blob: 260d2b336f4188b67d342a767432ffdebe96b72a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
# -*- perl -*-
package info2html::config;
#-----------------------------------------------------------------
# info2html.conf
#-----------------------------------------------------------------
# PURPOSE
# configuration settings for the 'info2html' script.
#
# AUTHOR
# Karl Guggisberg <guggis@iam.unibe.ch>
#
# HISTORY
# 15.10.93 V 1.0b
# 16.10.93 V 1.0c multple info files possible
# 28.6.94 V 1.0d some minor changes
# 8.4.95 V 1.1 some changements
#----------------------------------------------------------------
use strict;
#use vars qw(@ISA @EXPORT);
#
#@ISA = qw(Exporter);
#@EXPORT = qw(@INFODIR $DOC_URL);
#-- location of info files.
our @INFODIR = (
"/usr/share/info",
"/usr/info",
"/usr/lib/info",
# "/usr/lib/teTeX/info",
"/usr/local/info",
"/usr/local/lib/info",
"/usr/X11R6/info",
"/usr/X11R6/lib/info",
"/usr/X11R6/lib/xemacs/info"
);
#-- URL for documentation of info2html
our $DOC_URL = 'http://info2html.sourceforge.net/';
1;
|