summaryrefslogtreecommitdiff
path: root/java/openjdk8/files/patch-jdk-src-share-classes-sun-print-PSPrinterJob.java (unfollow)
Commit message (Collapse)AuthorFilesLines
2015-07-19. Update to 8u51.Greg Lewis1-32/+9
2014-05-21Fix printing services. When CUPS is used, ${LOCALBASE}/bin/lpr must be usedJung-uk Kim1-4/+2
to print a generated PostScript file. When lpd(8) is used, lpr(1) from base must be used. Also, status command for lpc(8) requires a printer name. If no argument is specified, i.e., "/usr/sbin/lpc status", then it displays the command usage, i.e., "usage: status {all | printer ...}". Unfortunately, "usage" is interpreted as a printer name because ":" is included. Add "all" and adjust an expression for grep(1).
2014-05-21- Fix printing services. When CUPS is used, ${LOCALBASE}/bin/lpr must beJung-uk Kim1-0/+36
used to print a generated PostScript file. When lpd(8) is used, lpr(1) from base must be used. Also, status command for lpc(8) requires a printer name. If no argument is specified, i.e., "/usr/sbin/lpc status", then it displays the command usage, i.e., "usage: status {all | printer ...}". Unfortunately, "usage" is interpreted as a printer name because ":" is included. Add "all" and adjust an expression for grep(1). [1] - Use /proc/curproc/file to find its executable path if available. It fixes java/icedtea-web, for example. [2] PR: ports/178856 [1] PR: java/189905 [2]