diff options
author | Karl Berry <karl@freefriends.org> | 2009-09-28 15:47:35 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2009-09-28 15:47:35 +0000 |
commit | 2a6eb79d48cb22cfc1d5074f2834cbd9438bb281 (patch) | |
tree | d93064b14329c8bbc14df80e33232c295ad82fa1 /Build/source | |
parent | 67bc959eef9a1d5113248ad72a0eedcd6b93b5af (diff) |
epstopdf 20041106
git-svn-id: svn://tug.org/texlive/trunk@15521 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source')
-rwxr-xr-x | Build/source/utils/epstopdf/epstopdf.pl | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/Build/source/utils/epstopdf/epstopdf.pl b/Build/source/utils/epstopdf/epstopdf.pl index 1b948dc072d..485196c8383 100755 --- a/Build/source/utils/epstopdf/epstopdf.pl +++ b/Build/source/utils/epstopdf/epstopdf.pl @@ -1,8 +1,19 @@ #!/usr/bin/env perl -# Change by Thomas Esser, Sept. 1998: The above lines allows us to find -# perl along $PATH rather than guessing a fixed location. The above -# construction should work with most shells. +# Copyright 1998-2001 by Sebastian Rahtz et al. +# epstopdf is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# epstopdf is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with epstopdf; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA use strict; @@ -58,7 +69,6 @@ my $title = "\U$program\E $fileversion, $filedate - $copyright\n"; ### ghostscript command name my $GS = "gs"; $GS = "gswin32c" if $^O eq 'MSWin32'; -$GS = "gswin32c" if $^O =~ /cygwin/; if ($IsWin32) { $GS = `kpsecheck --ghostscript`; |