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
44
45
46
47
48
49
50
51
52
|
--- man.cgi.orig Tue Aug 12 21:19:18 1997
+++ man.cgi Mon Nov 30 17:18:04 1998
@@ -59,8 +59,8 @@
## systems. If using Tom Christiansen's Perl man program, than
## define use "".
-#$SectOpt = "";
-$SectOpt = "-s";
+$SectOpt = "";
+#$SectOpt = "-s";
## man2html program (needs to be a full pathname)
@@ -77,15 +77,15 @@
#@ConvArgs = ("-compress");
#@ConvArgs = ("-compress", "-leftm", "1", "-topm", "8");
-@ConvArgs = ("-compress", "-sun");
+#@ConvArgs = ("-compress", "-sun");
## Keyword search processing arguments for man2html. Normally,
## '-k' is adequate. However, if on a Solaris system, the
## '-solaris' option should be specified with '-k'. See
## man2html documentation on information about the '-solaris' option.
-#@KeyWArgs = ("-k"); # Normal
-@KeyWArgs = ("-k", "-solaris"); # For Solaris
+@KeyWArgs = ("-k"); # Normal
+#@KeyWArgs = ("-k", "-solaris"); # For Solaris
## Possible manual sections. This array is used to determine the
## the choices available in an option menu.
@@ -124,9 +124,9 @@
## know about
@ManPath = qw(
+ /usr/share/man
/usr/local/man
- /usr/openwin/man
- /usr/man
+ /usr/X11R6/man
);
## PATH setting. Modify as see fit. Once useful modification
@@ -134,7 +134,6 @@
## be invoked over the systems nroff when man formats a manpage.
@Path = qw(
- /opt/FSFgroff/bin
/bin
/usr/bin
);
|