File: fix-image-types.patch

package info (click to toggle)
latex2html 2008-debian1-10
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 11,176 kB
  • ctags: 3,925
  • sloc: perl: 30,941; makefile: 429; sh: 155
file content (18 lines) | stat: -rw-r--r-- 479 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Description: Fixes IMAGE_TYPES
 By default, IMAGE_TYPES is empty. This patch sets the Debian default to "png
 gif".
Author: Roland Stigge <stigge@antcom.de>
Bug-Debian: http://bugs.debian.org/540197

--- latex2html-2008-debian1.orig/docs/.latex2html-init
+++ latex2html-2008-debian1/docs/.latex2html-init
@@ -5,6 +5,7 @@ $INDEX_WIDTH  = 250;
 $CONTENTS_WIDTH  = 250;
 $HTML_VALIDATE = '';
 $LOCAL_ICONS = 1;
-
+@IMAGE_TYPES = qw(png gif);
+$IMAGE_TYPE  = $IMAGE_TYPES[0];
 
 1;