summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/scripts
diff options
context:
space:
mode:
authorAkira Kakuto <kakuto@fuk.kindai.ac.jp>2020-09-11 22:03:38 +0000
committerAkira Kakuto <kakuto@fuk.kindai.ac.jp>2020-09-11 22:03:38 +0000
commit075c46da8ff119ea61fd501c5e99500d9ab8ec2d (patch)
treed3a5159190547d635e6d65d1ae5fd8734c4feb0c /Master/texmf-dist/scripts
parent1588dcacae63ec69829b4a4baa6c3fd626f7346a (diff)
-dALLOWPSTRANSPARENCY in scripts for gs (win32).
git-svn-id: svn://tug.org/texlive/trunk@56326 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/scripts')
-rwxr-xr-xMaster/texmf-dist/scripts/tlgs/gswin32/eps2eps.tlu2
-rwxr-xr-xMaster/texmf-dist/scripts/tlgs/gswin32/pdf2dsc.tlu2
-rwxr-xr-xMaster/texmf-dist/scripts/tlgs/gswin32/pdfopt.tlu2
-rwxr-xr-xMaster/texmf-dist/scripts/tlgs/gswin32/ps2ascii.tlu2
-rwxr-xr-xMaster/texmf-dist/scripts/tlgs/gswin32/ps2pdf.tlu2
-rwxr-xr-xMaster/texmf-dist/scripts/tlgs/gswin32/ps2pdf12.tlu2
-rwxr-xr-xMaster/texmf-dist/scripts/tlgs/gswin32/ps2pdf13.tlu2
-rwxr-xr-xMaster/texmf-dist/scripts/tlgs/gswin32/ps2pdf14.tlu2
-rwxr-xr-xMaster/texmf-dist/scripts/tlgs/gswin32/ps2ps.tlu2
9 files changed, 9 insertions, 9 deletions
diff --git a/Master/texmf-dist/scripts/tlgs/gswin32/eps2eps.tlu b/Master/texmf-dist/scripts/tlgs/gswin32/eps2eps.tlu
index 43701447a0d..ec592e54624 100755
--- a/Master/texmf-dist/scripts/tlgs/gswin32/eps2eps.tlu
+++ b/Master/texmf-dist/scripts/tlgs/gswin32/eps2eps.tlu
@@ -123,7 +123,7 @@ push(command, '-q', '-sDEVICE=eps2write')
if os.type=='unix' then push (command, '-sstdout=%stderr') end
push(command, '-sOutputFile='..file.output, '-dNOPAUSE',
- '-dBATCH', '-P-', '-dSAFER', '-dDEVICEWIDTH=250000',
+ '-dBATCH', '-P-', '-dALLOWPSTRANSPARENCY', '-dDEVICEWIDTH=250000',
'-dDEVICEHEIGHT=250000')
push(command, options)
diff --git a/Master/texmf-dist/scripts/tlgs/gswin32/pdf2dsc.tlu b/Master/texmf-dist/scripts/tlgs/gswin32/pdf2dsc.tlu
index 5a6cd479a7e..e41ec7390d1 100755
--- a/Master/texmf-dist/scripts/tlgs/gswin32/pdf2dsc.tlu
+++ b/Master/texmf-dist/scripts/tlgs/gswin32/pdf2dsc.tlu
@@ -53,7 +53,7 @@ end
local command={}
if os.type == 'unix' then command={'gs'} else command={'gswin32c'} end
-push(command, '-q', '-dNODISPLAY', '-dSAFER', '-dDELAYSAFER',
+push(command, '-q', '-dNODISPLAY', '-dALLOWPSTRANSPARENCY', '-dDELAYSAFER',
'-sPDFname='..pdffile, '-sDSCname='..dscfile, 'pdf2dsc.ps',
'-c', 'quit')
diff --git a/Master/texmf-dist/scripts/tlgs/gswin32/pdfopt.tlu b/Master/texmf-dist/scripts/tlgs/gswin32/pdfopt.tlu
index b0debe869df..5d7aa9de2f2 100755
--- a/Master/texmf-dist/scripts/tlgs/gswin32/pdfopt.tlu
+++ b/Master/texmf-dist/scripts/tlgs/gswin32/pdfopt.tlu
@@ -138,7 +138,7 @@ end
local command={}
if os.type == 'unix' then command={'gs'} else command={'gswin32c'} end
-push(command, '-P-', '-dSAFER', options, '-dCompatibilityLevel='..PDF_level)
+push(command, '-P-', '-dALLOWPSTRANSPARENCY', options, '-dCompatibilityLevel='..PDF_level)
if progname == 'pdfopt' then push(command, '-dFastWebView=true') end
diff --git a/Master/texmf-dist/scripts/tlgs/gswin32/ps2ascii.tlu b/Master/texmf-dist/scripts/tlgs/gswin32/ps2ascii.tlu
index d23c0458ea8..b97ad80c90c 100755
--- a/Master/texmf-dist/scripts/tlgs/gswin32/ps2ascii.tlu
+++ b/Master/texmf-dist/scripts/tlgs/gswin32/ps2ascii.tlu
@@ -93,7 +93,7 @@ local progname, options, files=parse_cmdline ()
local command={gs}
if os.type == 'unix' then command={'gs'} else command={'gswin32c'} end
-push(command, {'-q', '-dNODISPLAY', '-P-', '-dSAFER', '-dDELAYBIND',
+push(command, {'-q', '-dNODISPLAY', '-P-', '-dALLOWPSTRANSPARENCY', '-dDELAYBIND',
'-dWRITESYSTEMDICT', '-dSIMPLE'})
push(command, '-c', 'save', '-f', 'ps2ascii.ps')
diff --git a/Master/texmf-dist/scripts/tlgs/gswin32/ps2pdf.tlu b/Master/texmf-dist/scripts/tlgs/gswin32/ps2pdf.tlu
index e629f23cfdb..64065fab3c6 100755
--- a/Master/texmf-dist/scripts/tlgs/gswin32/ps2pdf.tlu
+++ b/Master/texmf-dist/scripts/tlgs/gswin32/ps2pdf.tlu
@@ -138,7 +138,7 @@ end
local command={}
if os.type == 'unix' then command={'gs'} else command={'gswin32c'} end
-push(command, '-P-', '-dSAFER', options, '-dCompatibilityLevel='..PDF_level)
+push(command, '-P-', '-dALLOWPSTRANSPARENCY', options, '-dCompatibilityLevel='..PDF_level)
if progname == 'pdfopt' then push(command, '-dFastWebView=true') end
diff --git a/Master/texmf-dist/scripts/tlgs/gswin32/ps2pdf12.tlu b/Master/texmf-dist/scripts/tlgs/gswin32/ps2pdf12.tlu
index e629f23cfdb..64065fab3c6 100755
--- a/Master/texmf-dist/scripts/tlgs/gswin32/ps2pdf12.tlu
+++ b/Master/texmf-dist/scripts/tlgs/gswin32/ps2pdf12.tlu
@@ -138,7 +138,7 @@ end
local command={}
if os.type == 'unix' then command={'gs'} else command={'gswin32c'} end
-push(command, '-P-', '-dSAFER', options, '-dCompatibilityLevel='..PDF_level)
+push(command, '-P-', '-dALLOWPSTRANSPARENCY', options, '-dCompatibilityLevel='..PDF_level)
if progname == 'pdfopt' then push(command, '-dFastWebView=true') end
diff --git a/Master/texmf-dist/scripts/tlgs/gswin32/ps2pdf13.tlu b/Master/texmf-dist/scripts/tlgs/gswin32/ps2pdf13.tlu
index e629f23cfdb..64065fab3c6 100755
--- a/Master/texmf-dist/scripts/tlgs/gswin32/ps2pdf13.tlu
+++ b/Master/texmf-dist/scripts/tlgs/gswin32/ps2pdf13.tlu
@@ -138,7 +138,7 @@ end
local command={}
if os.type == 'unix' then command={'gs'} else command={'gswin32c'} end
-push(command, '-P-', '-dSAFER', options, '-dCompatibilityLevel='..PDF_level)
+push(command, '-P-', '-dALLOWPSTRANSPARENCY', options, '-dCompatibilityLevel='..PDF_level)
if progname == 'pdfopt' then push(command, '-dFastWebView=true') end
diff --git a/Master/texmf-dist/scripts/tlgs/gswin32/ps2pdf14.tlu b/Master/texmf-dist/scripts/tlgs/gswin32/ps2pdf14.tlu
index e629f23cfdb..64065fab3c6 100755
--- a/Master/texmf-dist/scripts/tlgs/gswin32/ps2pdf14.tlu
+++ b/Master/texmf-dist/scripts/tlgs/gswin32/ps2pdf14.tlu
@@ -138,7 +138,7 @@ end
local command={}
if os.type == 'unix' then command={'gs'} else command={'gswin32c'} end
-push(command, '-P-', '-dSAFER', options, '-dCompatibilityLevel='..PDF_level)
+push(command, '-P-', '-dALLOWPSTRANSPARENCY', options, '-dCompatibilityLevel='..PDF_level)
if progname == 'pdfopt' then push(command, '-dFastWebView=true') end
diff --git a/Master/texmf-dist/scripts/tlgs/gswin32/ps2ps.tlu b/Master/texmf-dist/scripts/tlgs/gswin32/ps2ps.tlu
index 063fc76d0cc..e5e81a4b6f4 100755
--- a/Master/texmf-dist/scripts/tlgs/gswin32/ps2ps.tlu
+++ b/Master/texmf-dist/scripts/tlgs/gswin32/ps2ps.tlu
@@ -123,7 +123,7 @@ push(command, '-q', '-sDEVICE=ps2write')
if os.type=='unix' then push(command, '-sstdout=%stderr') end
push(command, '-sOutputFile='..file.output)
-push(command, '-dNOPAUSE', '-dBATCH', '-P-', '-dSAFER')
+push(command, '-dNOPAUSE', '-dBATCH', '-P-', '-dALLOWPSTRANSPARENCY')
push(command, options, file.input)
command=fixwin(command)