[l2h] ghostscript 7.02

David R. Morrison drm@math.duke.edu
Wed, 20 Feb 2002 15:06:09 -0500


Ghostscript 7.02 is labelled as PRE-RELEASE, so latex2html-2K.1beta requires
a patch to compile when it is installed.  I thought this might be fixed in
the CVS version, but the CVS repository at Bayreuth is inaccessible on the
web.  (The error message is cute, though!)

In case anyone else is interested, I enclose the patch below.

  -- Dave


diff -ru latex2html-2K.1beta/config/config.pl latex2html-2K.1beta-patched/config/config.pl
--- latex2html-2K.1beta/config/config.pl	Sun Mar 25 00:15:01 2001
+++ latex2html-2K.1beta-patched/config/config.pl	Wed Feb 20 14:50:32 2002
@@ -999,7 +999,7 @@
 
       while (<GS>) {
         chomp;
-        if($flag == 0 && /Ghostscript\s*(?:Version|BETA RELEASE|TESTER RELEASE|)\s*(\d+[.]?\d*)/i) {
+        if($flag == 0 && /Ghostscript\s*(?:Version|PRE-RELEASE|BETA RELEASE|TESTER RELEASE|)\s*(\d+[.]?\d*)/i) {
           $gs_version = $1;
           $flag = 1;
         }