2014-03-26 12:21:25 +00:00
|
|
|
diff -up ghostscript-9.12/Resource/Init/gs_fonts.ps.runlibfileifexists ghostscript-9.12/Resource/Init/gs_fonts.ps
|
|
|
|
--- ghostscript-9.12/Resource/Init/gs_fonts.ps.runlibfileifexists 2014-03-25 08:52:16.000000000 +0000
|
|
|
|
+++ ghostscript-9.12/Resource/Init/gs_fonts.ps 2014-03-26 12:01:48.248748767 +0000
|
2012-08-09 13:30:22 +00:00
|
|
|
@@ -95,10 +95,19 @@ userdict /Fontmap .FontDirectory maxleng
|
2010-09-13 14:07:13 +00:00
|
|
|
% stack: dict file fontname filename|aliasname
|
|
|
|
1 index type /stringtype eq
|
|
|
|
1 index type /nametype eq and 1 index xcheck and
|
|
|
|
- 1 index /run eq 2 index /.runlibfile eq or and {
|
|
|
|
+ 1 index /run eq 2 index /.runlibfile eq 3 index /.runlibfileifexists eq or or and {
|
|
|
|
% This is an inclusion entry.
|
|
|
|
- pop findlibfile { exch pop } { file } ifelse
|
|
|
|
- 2 index exch .readFontmap pop
|
|
|
|
+ 0 index /.runlibfileifexists eq {
|
|
|
|
+ pop findlibfile {
|
|
|
|
+ exch pop
|
|
|
|
+ 2 index exch .readFontmap pop
|
|
|
|
+ } {
|
|
|
|
+ pop
|
|
|
|
+ } ifelse
|
|
|
|
+ } {
|
|
|
|
+ pop findlibfile { exch pop } { file } ifelse
|
|
|
|
+ 2 index exch .readFontmap pop
|
|
|
|
+ } ifelse
|
|
|
|
} {
|
|
|
|
% This is a real entry.
|
|
|
|
% Read and pop tokens until a semicolon.
|
2014-03-26 12:21:25 +00:00
|
|
|
diff -up ghostscript-9.12/Resource/Init/gs_init.ps.runlibfileifexists ghostscript-9.12/Resource/Init/gs_init.ps
|
|
|
|
--- ghostscript-9.12/Resource/Init/gs_init.ps.runlibfileifexists 2014-03-25 08:52:16.000000000 +0000
|
|
|
|
+++ ghostscript-9.12/Resource/Init/gs_init.ps 2014-03-26 12:01:48.248748767 +0000
|
|
|
|
@@ -681,6 +681,14 @@ systemdict /internaldict dup .makeintern
|
2011-08-09 14:42:00 +00:00
|
|
|
{ /undefinedfilename signalerror }
|
|
|
|
ifelse
|
|
|
|
} bind def
|
2007-11-30 09:03:51 +00:00
|
|
|
+/runlibfileifexists
|
2011-08-09 14:42:00 +00:00
|
|
|
+ { % We don't want to bind 'run' into this procedure,
|
|
|
|
+ % since run may get redefined.
|
|
|
|
+ findlibfile
|
|
|
|
+ { exch pop /run .systemvar exec }
|
|
|
|
+ { pop }
|
|
|
|
+ ifelse
|
|
|
|
+ } bind def
|
2007-11-30 09:03:51 +00:00
|
|
|
/selectdevice
|
2011-08-09 14:42:00 +00:00
|
|
|
{ finddevice setdevice .setdefaultscreen } bind def
|
2007-11-30 09:03:51 +00:00
|
|
|
/signalerror % <object> <errorname> signalerror -
|
2014-03-26 12:21:25 +00:00
|
|
|
@@ -849,6 +857,7 @@ userdict /.currentresourcefile //null pu
|
2011-08-09 14:42:00 +00:00
|
|
|
} bind def
|
2007-11-30 09:03:51 +00:00
|
|
|
% Temporarily substitute it for the real runlibfile.
|
|
|
|
/.runlibfile /runlibfile load def
|
2007-11-30 11:01:37 +00:00
|
|
|
+/.runlibfileifexists /runlibfileifexists load def
|
2007-11-30 09:03:51 +00:00
|
|
|
/runlibfile /runlibfile0 load def
|
|
|
|
|
|
|
|
% Create the error handling machinery.
|