summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/scripts/epstopdf
diff options
context:
space:
mode:
authorPeter Breitenlohner <peb@mppmu.mpg.de>2012-05-12 10:58:45 +0000
committerPeter Breitenlohner <peb@mppmu.mpg.de>2012-05-12 10:58:45 +0000
commit3572a03583d40cb0ae0df2c77bb6600fffafa4b4 (patch)
tree648e003551c4d91f55695ea32c1ec09e51a9e67c /Master/texmf-dist/scripts/epstopdf
parent8126e3974bd29610da8c60722bc20a20645604cf (diff)
epstopdf 2.17: sync from Build/source/extra: placate perl -w
git-svn-id: svn://tug.org/texlive/trunk@26309 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/scripts/epstopdf')
-rwxr-xr-xMaster/texmf-dist/scripts/epstopdf/epstopdf.pl11
1 files changed, 8 insertions, 3 deletions
diff --git a/Master/texmf-dist/scripts/epstopdf/epstopdf.pl b/Master/texmf-dist/scripts/epstopdf/epstopdf.pl
index 9299839c41e..ca2bb234e4e 100755
--- a/Master/texmf-dist/scripts/epstopdf/epstopdf.pl
+++ b/Master/texmf-dist/scripts/epstopdf/epstopdf.pl
@@ -2,7 +2,7 @@ eval '(exit $?0)' && eval 'exec perl -S $0 ${1+"$@"}' && eval 'exec perl -S $0 $
if 0;
use strict;
-# $Id: epstopdf.pl 18319 2010-05-17 16:34:21Z karl $
+# $Id: epstopdf.pl 26303 2012-05-11 22:54:04Z karl $
# (Copyright lines below.)
#
# Redistribution and use in source and binary forms, with or without
@@ -46,6 +46,8 @@ use strict;
#
# emacs-page
# History
+# 2012/05/12 v2.17 (Karl Berry)
+# * uselessly placate -w. Debian bug 672281.
# 2010/05/09 v2.16 (Karl Berry)
# * make --nogs dump edited PostScript to stdout by default
# (report from Reinhard Kotucha).
@@ -149,9 +151,9 @@ use strict;
### program identification
my $program = "epstopdf";
-my $ident = '($Id: epstopdf.pl 18319 2010-05-17 16:34:21Z karl $) 2.16';
+my $ident = '($Id: epstopdf.pl 26303 2012-05-11 22:54:04Z karl $) 2.17';
my $copyright = <<END_COPYRIGHT ;
-Copyright 2009-2010 Karl Berry et al.
+Copyright 2009-2012 Karl Berry et al.
Copyright 2002-2009 Gerben Wierda et al.
Copyright 1998-2001 Sebastian Rahtz et al.
License RBSD: Revised BSD <http://www.xfree86.org/3.3.6/COPYRIGHT2.html#5>
@@ -179,9 +181,12 @@ $::opt_exact = 0;
$::opt_filter = 0;
$::opt_gs = 1;
$::opt_gscmd = "";
+$::opt_help = 0;
$::opt_hires = 0;
$::opt_outfile = "";
$::opt_res = 0;
+$::opt_restricted = 0;
+$::opt_version = 0;
### usage
my @bool = ("false", "true");