ports/print/ghostscript-afpl/files/patch-src:zmedia2.c
Akinori MUSHA f490d90d09 ** ghostscript6 has been repocopied to ghostscript-afpl **
Update to AFPL Ghostscript 7.00.

PR:		ports/29580
Submitted by:	KATO Tsuguru <tkato@prontomail.com>
2001-09-11 19:24:31 +00:00

25 lines
1 KiB
C

--- src/zmedia2.c.orig Wed Sep 20 04:00:54 2000
+++ src/zmedia2.c Wed Jun 20 04:06:24 2001
@@ -427,11 +427,17 @@
rx = ry, ry = temp;
}
- /* Adjust the medium size if flexible. */
- if (medium->p.x < MIN_MEDIA_SIZE && mx > rx)
- mx = rx;
- if (medium->p.y < MIN_MEDIA_SIZE && my > ry)
- my = ry;
+ /* If 'medium' is flexible, adjust 'mx' and 'my' towards 'rx' and 'ry',
+ respectively. Note that 'mx' and 'my' have just acquired the largest
+ permissible value, medium->q. */
+ if (medium->p.x < mx) /* non-empty width range */
+ if (rx < medium->p.x) mx = medium->p.x; /* minimum */
+ else if (mx > rx) mx = rx; /* fits */
+ /* else use medium->q.x, i.e., the maximum */
+ if (medium->p.y < my) /* non-empty height range */
+ if (ry < medium->p.y) my = medium->p.y; /* minimum */
+ else if (my > ry) my = ry; /* fits */
+ /* else use medium->q.y, i.e., the maximum */
/* Translate to align the centers. */
gs_make_translation(mx / 2, my / 2, pmat);