* Fixing a lot of typos in groff_mm.man
[s-roff.git] / PROBLEMS
blob391fcdac2385ba18679f8e19c427a6d5ffa0d4f8
1 This file describes various problems that have been encountered in
2 compiling, installing and running groff.  Suggestions for additions or
3 other improvements to this file are welcome.
5 ----------------------------------------------------------------------
7 * My document says that the current year is 19100, not 2000.
9 In groff, as in traditional troff, the yr number register yields the
10 year minus 1900.  Unfortunately, there is a longstanding bug in the
11 Troff User's Manual <http://cm.bell-labs.com/cm/cs/cstr/54.ps.gz>,
12 which incorrectly claims that yr is the last two digits of the year.
13 This claim was never true of either Unix troff or of groff.
15 If your text looks like this:
17         .\" Wrong:
18         This document was formatted in 19\n(yr.
20 you can correct it as follows:
22         This document was formatted in \n[year].
24 or, if you want to be portable to older troff versions, as follows:
26         .nr y4 1900+\n(yr
27         This document was formatted in \n(y4.
29 ----------------------------------------------------------------------
31 * I get lots of `numeric overflow' error messages whenever I run
32   groff; I compiled groff with AT&T C++ 2.0 with an ANSI C compiler.
34 Make sure -DCFRONT_ANSI_BUG is included in DEFINES in the top-level
35 Makefile.  If that doesn't solve the problem, define INT_MIN as
36 -INT_MAX in libgroff/lib.h.
38 ----------------------------------------------------------------------
40 * I get errors when I try to compile groff with Sun C++ version 5.0
41   or 5.1.
43 This is a known problem; see Sun bug #4301919.  As of this writing, no
44 patch is available.  Use GCC 2.95.2 or later instead.
46 ----------------------------------------------------------------------
48 * I get errors when I try to compile groff with Sun C++ version 3 or
49   earlier.
51 Groff requires header files that are moderately compatible with AT&T
52 C++ and ANSI C.  With some versions of Sun C++, the supplied header
53 files need some of the following changes to meet this requirement:
54 <string.h> must declare the mem* functions, (just add `#include
55 <memory.h>' to <string.h>); the first argument to fopen and freopen
56 should be declared as `const char *'; the first argument to fread
57 should be declared as `void *'; the first argument to fwrite should be
58 declared as `const void *'; malloc should be declared to return
59 `void *'; in <alloca.h>, the declaration `extern "C" { void
60 *__builtin_alloca(int); }' should be added; in <sys/signal.h> the
61 return type and the second argument type of signal() should be changed
62 to be `void (*)(int)'.
64 You can either change them in place, or copy them to some other
65 directory and include that directory with a -I option.
67 ----------------------------------------------------------------------
69 * The configure script fails on OS/390 Unix.
71 There is a bug in the Language Environment (LE) whereby the test
72 program for static destructors fails.  You will see the message
73 'configure: error: a working C++ compiler is required'
75 Applying PTF UQ42006 is supposed to fix this, but the test program is
76 still returning the wrong value (1).  To work around this problem, you
77 can comment out the following in the configure script (near line 956).
78 This will effectively bypass the test (static constructors and
79 destructors do actually work properly):
81 #if { (eval echo configure:957: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
82 #then
83   echo "$ac_t""yes" 1>&6
84 #else
85 #  echo "configure: failed program was:" >&5
86 #  cat conftest.$ac_ext >&5
87 #  rm -fr conftest*
88 #  echo "$ac_t""no" 1>&6;{ echo "configure: error: a working C++ compiler is required" 1>&2; exit 1; }
89 #fi
91 ----------------------------------------------------------------------
93 * I get errors when I try to compile groff with DEC C++.
95 Fix the declaration of write() in <unistd.h> so that the second
96 argument is a const char *.  Fix the declaration of open() in
97 <sys/file.h> so that the first argument is a const char *.
99 ----------------------------------------------------------------------
101 * On Ultrix, the make stops with the message
103   *** Error code 1
105   Stop.
107 for no apparent reason.
109 Use GNU make.
111 ----------------------------------------------------------------------
113 * I'm having problems compiling groff on 386BSD 0.1.
115 If you're using ash as /bin/sh, you'll need the following patch.
117 *** gendef.sh.org       Sun Jun 30 13:30:36 1991
118 --- gendef.sh   Sun Feb 28 10:23:49 1993
119 ***************
120 *** 3,9 ****
121   file=$1
122   shift
123   
124 ! defs="#define $1"
125   shift
126   for def
127   do
128 --- 3,10 ----
129   file=$1
130   shift
131   
132 ! x=$1
133 ! defs="#define $x"
134   shift
135   for def
136   do
138 You'll also need to change dirnamemax.c so that it doesn't use
139 pathconf().
141 ----------------------------------------------------------------------
143 * While compiling on Xenix, ranlib libgroff.a fails.
145 The system ranlib can't handle externals longer than 40 characters.
146 Use the ranlib included in demon.co.uk:/pub/xenix/g++-1.40.3a.v1
147 instead.
149 ----------------------------------------------------------------------
151 * There are many empty `Makefile.dep' files.  Is this a bug?
153 No.  Real dependency files are created with a `make depend' call.
155 ----------------------------------------------------------------------
157 * Groff can't handle my troff document. It works fine with AT&T troff.
159 Read the section on incompatibilities in gtroff(1).  Try using the -C
160 option.  Alternatively there's the sed script in tmac/fixmacros.sed
161 which will attempt to edit a file of macros so that it can be used
162 with groff without the -C flag.
164 ----------------------------------------------------------------------
166 * groff -Tdvi produces dvi files that use fonts at weird
167   magnifications.
169 Yes, it does.  You may need to compile fonts with Metafont at these
170 magnifications.  The CompileFonts script in the devdvi/generate
171 directory may help you to do this.  (It will take a *long* time.)
173 ----------------------------------------------------------------------
175 * pic output is not centered horizontally; pictures sometimes run off
176   the bottom of the page.
178 The macro package you are using is not supplying appropriate
179 definitions of PS and PE.  Give groff a -mpic option.
181 ----------------------------------------------------------------------
183 * I'm having problems including PostScript illustrations using the
184   PSPIC macro.
186 A PostScript document must meet three requirements in order to be
187 included with the PSPIC macro: it must comply with the Adobe Document
188 Structuring Conventions; it must contain a BoundingBox line; it must
189 be ``well-behaved''.  The BoundingBox line should be of the form:
191   %%BoundingBox: llx lly urx ury
193 where llx, lly, urx, ury are the coordinates of the lower left x,
194 lower left y, upper right x, upper right y of the bounding box of
195 marks on the page expressed as integers in the default PostScript
196 coordinate system (72 units per inch, origin at bottom left corner).
197 A useful tactic is to print out the illustration by itself (you may
198 need to add a `showpage' at the end), and physically measure the
199 bounding box.  For more detail on these requirements, read the
200 specification of Encapsulated PostScript format.  (This is available
201 from the Adobe file server; send a message with a body of `help' to
202 ps-file-server@adobe.com.)
204 ----------------------------------------------------------------------
206 * I've configured groff for A4 paper, but gtroff still seems to think
207   that the length of a page (as returned by \n(.p) is 11 inches.
209 This is intentional.  The PAGE option is used only by grops.  For
210 compatibility with ditroff, the default page length in gtroff is
211 always 11 inches.  The page length can be changed with the `pl'
212 request.
214 ----------------------------------------------------------------------
216 * Groff doesn't use the font names I'm used to.
218 Use the `ftr' request.  See gtroff(1).
220 ----------------------------------------------------------------------
222 * I get errors using the Unix -ms macros with groff -e -C.
224 Apply this change:
226 *** /usr/lib/ms/ms.eqn  Tue Apr 25 02:14:28 1989
227 --- ms.eqn      Sun Nov 11 10:33:59 1990
228 ***************
229 *** 22,29 ****
230   ..
231   .     \" EN - end of a displayed equation
232   .de EN
233 ! .if !\a\\*(10\a\a .br
234   .di
235   .rm EZ
236   .nr ZN \\n(dn
237   .if \\n(ZN>0 .if \\n(YE=0 .LP
238 --- 22,30 ----
239   ..
240   .     \" EN - end of a displayed equation
241   .de EN
242 ! .if \\n(.k>0 .br
243   .di
244 + .ds 10 \\*(EZ\\
245   .rm EZ
246   .nr ZN \\n(dn
247   .if \\n(ZN>0 .if \\n(YE=0 .LP
249 ----------------------------------------------------------------------
251 * gpic doesn't accept the syntax `chop N M' for chopping both ends of
252   a line.
254 The correct syntax is `chop N chop M'.
256 ----------------------------------------------------------------------
258 * With gpic -t, when I print `line ->; box' using a dvi to ps program,
259   the arrow head sticks through into the inside of the box.
261 The dvi to ps program should be modified to set the line cap and line
262 join parameters to 1 while printing tpic specials.
264 ----------------------------------------------------------------------
266 * When I print the output groff -Tps, the output is always shifted up
267   by about 0.7 inches; I'm using 8.5x11 inch paper.
269 Make sure that PAGE is defined to be `letter' in the top-level
270 Makefile.
272 ----------------------------------------------------------------------
274 * When I try to print the output of groff -Tps, I get no output at all
275   from the printer, and the log file shows the error
276   %%[ error: undefined; offendingcommand: BP ]%%
277   I'm using TranScript spooling software.
279 This is a bug in the page reversal filter in early versions of
280 TranScript.  Change the `broken' parameter in
281 /usr/local/lib/groff/font/devps/DESC to 7.
283 ----------------------------------------------------------------------
285 * When I preview groff -Tps output using the Sun OpenWindows 2.0
286   pageview program, all the pages are displayed on top of each other.
288 This is a defect in pageview.  Change the `broken' parameter in
289 /usr/local/lib/groff/font/devps/DESC to 2.
291 ----------------------------------------------------------------------
293 * With groff -TX75, -TX100 or -X, I can only view the first page.
295 The left mouse button brings up a menu that allows you to view other
296 pages.
298 ----------------------------------------------------------------------
300 * When I print the output of groff -Tdvi, I just get a black dot in
301   upper left corner.
303 Some dvi drivers (notably early versions of xtex) do not correctly
304 handle dvi files that use a resolution different from that used by dvi
305 files produced by TeX.  Try getting a more up to date driver.
307 ----------------------------------------------------------------------
309 * I get lots of errors when I use groff with the AT&T -mm macros.
311 The AT&T -mm macros need a few changes to work with groff; `make
312 install.dwbmm' will copy your -mm macros to groff's macro directory
313 and make the necessary changes.  You may need to edit the commands for
314 the install.mm target in the Makefile.  Alternatively use the groff
315 -mm macros.
317 ----------------------------------------------------------------------
319 * gtroff doesn't understand lines like `.ce99' with no space between
320   the name of the request or macro and the arguments.
322 gtroff requires a space between macro or request and its arguments
323 because it allows the use of long names for macros and requests.  You
324 can use the -C option or the `cp' request to put gtroff into a
325 compatibility mode in which it is not possible to use long names for
326 macros but in which no space is required between macros and their
327 arguments.  The use of compatibility mode is strongly discouraged.
329 ----------------------------------------------------------------------
331 * gtroff gives warnings about lines like
332   .ev   \" a comment
333   (with a tab after the .ev).
335 A tab character cannot be used as a substitute for a space character
336 (except in one case: between a control character at the beginning of a
337 line and the name of a macro or request).  For example, in Unix troff
339   .ps   \" restore the previous point size
341 (with a tab after the .ps) will NOT restore the previous point-size;
342 instead it will be silently ignored.  Since this is very likely to be
343 an error, gtroff can give a warning about it.  If you want to align
344 comments, you can do it like this:
346   .ev\"                         \" a comment
348 ----------------------------------------------------------------------
350 * I don't like the page headers and footers produced by groff -man.
352 There seem to be many different styles of page header and footer
353 produced by different versions of the -man macros.  You will need to
354 modify macros/tmac.an to suit your personal taste.  For example, if
355 you want the center of the page header to say
357   System Programmer's Manual
359 you will need to change the line
361   .el .ds an-extra3 \"System Programmer's Manual
365   .el .ds an-extra3 System Programmer's Manual
367 ----------------------------------------------------------------------
369 * While formatting a manual page, groff complains about not being able
370   to break lines.  The problem seems to be caused by a line like:
371   .TP \w'label'+2
373 The -man documentation says that the default scale indicator for TP
374 macro is `n'.  The groff -man macros implement this correctly, so that
375 the argument will be evaluated as if it were
377   \w'label'n+2n
379 The Unix -man macros don't implement this correctly (probably because
380 it's hard to do in Unix troff); they just append `n' to the entire
381 argument, so that it will be evaluated as if it were
383   \w'label'u+2n
385 The solution is to fix the manual page:
387   .TP \w'label'u+2
389 ----------------------------------------------------------------------
391 * I'm having problems formatting Ultrix man pages with groff -man.
393 The Ultrix man pages use a number of non-standard extensions to the
394 Unix man macros.  One solution is to use the Ultrix -man macros with
395 groff.  Rename /usr/local/lib/groff/tmac/tmac.an to
396 /usr/local/lib/groff/tmac/tmac.an.gnu, copy /usr/lib/tmac/tmac.an to
397 /usr/local/lib/groff/tmac/tmac.an and apply the following patch (from
398 Frank Wortner):
400 *** /usr/local/lib/groff/tmac/tmac.an     Wed Sep  9 12:29:28 1992
401 --- /usr/lib/tmac/tmac.an       Fri Jul 24 19:58:19 1992
402 ***************
403 *** 489,495 ****
404   .     \" make special case of shift out of italic
405   .de }S
406   .ds ]F
407 ! .if \\$12 .if !\\$5 .ds ]F \^
408   .ie !\\$4 .}S \\$2 \\$1 "\\$3\f\\$1\\$4\\*(]F" "\\$5" "\\$6" "\\$7" "\\$8" "\\$9"
409   .el \\$3
410   .}f
411 --- 489,495 ----
412   .     \" make special case of shift out of italic
413   .de }S
414   .ds ]F
415 ! .if \\$12 .if !\\$5 .ds ]F\^
416   .ie !\\$4 .}S \\$2 \\$1 "\\$3\f\\$1\\$4\\*(]F" "\\$5" "\\$6" "\\$7" "\\$8" "\\$9"
417   .el \\$3
418   .}f
420 Another possible solution is to install tmac/man.ultrix as
421 /usr/local/lib/groff/tmac/man.local.
423 ----------------------------------------------------------------------
425 * I'm having problems formatting HP-UX 9.0 man pages with groff -man.
427 Rename /usr/local/lib/groff/tmac/tmac.an to (for example)
428 /usr/local/lib/groff/tmac/tmac.gan, copy HP's tmac.an into
429 /usr/local/lib/groff/tmac/tmac.an, and either put `.cp 1' at the
430 beginning or filter it (and any files it .so's) through
431 tmac/fixmacros.sed.
433 ----------------------------------------------------------------------
435 * I'm having problems formatting man pages produced by the perl
436   wrapman script.
438 Some versions of wrapman have a superfluous blank line before the .TH
439 line.  This must be deleted.  Then either use groff -C, or apply the
440 following patch:
442 *** wrapman.~2~ Sun Jan 19 12:10:24 1992
443 --- wrapman     Tue Aug 10 02:06:41 1993
444 ***************
445 *** 35,41 ****
446       $line1 .= <IN> if $line1 =~ /eval/;
447       $line1 .= <IN> if $line1 =~ /argv/;
448       $line2 = <IN>;
449 !     next if $line2 eq "'di';\n";
450   
451       # Pull the old switcheroo.
452   
453 --- 35,41 ----
454       $line1 .= <IN> if $line1 =~ /eval/;
455       $line1 .= <IN> if $line1 =~ /argv/;
456       $line2 = <IN>;
457 !     next if $line2 eq "'di ';\n" || $line2 eq "'di';\n";
458   
459       # Pull the old switcheroo.
460   
461 ***************
462 *** 49,56 ****
463   
464       print OUT $line1;
465       print OUT <<EOF;
466 ! 'di';
467 ! 'ig00';
468   #
469   # $header
470   #
471 --- 49,58 ----
472   
473       print OUT $line1;
474       print OUT <<EOF;
475 ! 'di ';
476 ! 'ds 00 \\"';
477 ! 'eo ';
478 ! 'ig 00 ';
479   #
480   # $header
481   #
482 ***************
483 *** 72,85 ****
484   
485       # These next few lines are legal in both Perl and nroff.
486   
487 ! $null.00;                       # finish .ig
488    
489   'di           \\" finish diversion--previous line must be blank
490   .nr nl 0-1    \\" fake up transition to first page again
491   .nr % 0         \\" start at page 1
492 ! '; __END__ ##### From here on it's a standard manual page #####
493   .TH $PROG 1 "$month $mday, 19$year"
494 - .AT 3
495   .SH NAME
496   $prog \\- whatever
497   .SH SYNOPSIS
498 --- 74,87 ----
499   
500       # These next few lines are legal in both Perl and nroff.
501   
502 ! $null.00 ;                      # finish .ig
503 ! 'ec \\';
504    
505   'di           \\" finish diversion--previous line must be blank
506   .nr nl 0-1    \\" fake up transition to first page again
507   .nr % 0         \\" start at page 1
508 ! .\\"'; __END__ ##### From here on it's a standard manual page #####
509   .TH $PROG 1 "$month $mday, 19$year"
510   .SH NAME
511   $prog \\- whatever
512   .SH SYNOPSIS
515 ----------------------------------------------------------------------
517 * When I preview documents using -TX75 or -TX100, the layout is not
518   the same as when I print the document with -Tps: the line and page
519   breaks come in different places.
521 Use groff -X -Tps.
523 ----------------------------------------------------------------------
525 * When I try to run gxditview, I get the error:
526   Error: Widget viewport has zero width and/or height
528 This error means you haven't correctly installed the application
529 defaults file, GXditview.ad; ``make install'' does this for you
530 automatically, so either you didn't do ``make install'', or you don't
531 have imake configured correctly.
533 ----------------------------------------------------------------------
535 * groff uses up an enormous amount of memory processing large files.
536   I'm using 386BSD 0.1.
538 386BSD includes an old version of g++, 1.39, which has a bug that
539 causes a major memory leak in gtroff.  Apply the following fix to g++
540 and recompile groff:
542 *** cplus-decl.c.~1~    Mon Aug  6 05:28:59 1990
543 --- cplus-decl.c        Wed Jun  5 08:55:04 1991
544 ***************
545 *** 7951,7961 ****
546   
547         /* At the end, call delete if that's what's requested.  */
548         if (TREE_GETS_DELETE (current_class_type))
549         exprstmt = build_method_call (build1 (NOP_EXPR, TYPE_POINTER_TO (current_class_type), error_mark_node),
550                                       get_identifier (OPERATOR_DELETE_FORMAT),
551 !                                     build_tree_list (NULL_TREE, integer_zero_node),
552                                       NULL_TREE, LOOKUP_NORMAL);
553         else if (TYPE_USES_VIRTUAL_BASECLASSES (current_class_type))
554         exprstmt = build_x_delete (ptr_type_node, current_class_decl, 0);
555         else
556         exprstmt = 0;
557 --- 7951,7961 ----
558   
559         /* At the end, call delete if that's what's requested.  */
560         if (TREE_GETS_DELETE (current_class_type))
561         exprstmt = build_method_call (build1 (NOP_EXPR, TYPE_POINTER_TO (current_class_type), error_mark_node),
562                                       get_identifier (OPERATOR_DELETE_FORMAT),
563 !                                     build_tree_list (NULL_TREE, current_class_decl),
564                                       NULL_TREE, LOOKUP_NORMAL);
565         else if (TYPE_USES_VIRTUAL_BASECLASSES (current_class_type))
566         exprstmt = build_x_delete (ptr_type_node, current_class_decl, 0);
567         else
568         exprstmt = 0;
570 ----------------------------------------------------------------------
572 * Where can I get grap?
574 Ted Faber <faber@lunabase.org> has written a freely available grap:
576   http://www.lunabase.org/~faber/Vault/software/grap/
578 ----------------------------------------------------------------------
580 * How can I use groff with an old LaserJet printer that doesn't work
581   with groff -Tlj4?
583 You have at least 3 options:
585 - use groff -Tps with GNU Ghostscript;
587 - use groff -Tdvi with a TeX .dvi to Laserjet driver;
589 - use groff with the LaserJet driver in Chris Lewis' psroff package
590   (available for ftp from:
591   ftp.uunet.ca:/distrib/chris_lewis/psroff3.0pl17).
593 ----------------------------------------------------------------------
595 * Groff seems to generate level 3 Postscript, but my printer is only a
596   level 1 or 2 PostScript printer.
598 In fact groff generates only level 1 PostScript.  The `%!PS-Adobe-3.0'
599 comment at the beginning of PostScript output generated by groff
600 indicates that the file conforms to version 3.0 of the Adobe Document
601 Structuring Conventions.  The output generated by groff should be
602 printable on any PostScript printer.  Problems with groff output's not
603 printing are most often caused by the spooling system.
605 ----------------------------------------------------------------------
607 * The \n(st and \n(sb registers don't seem to work.  I thought \w set
608   them to the height and depth of its argument, but the registers
609   always seem to be 0.
611 \n(st and \n(sb aren't supposed to give the height and depth of the
612 string rather they give the minimum and maximum vertical displacement
613 of the baseline.  For example for \v'2u'\v'-3u', \n(st will be 1 and
614 \n(sb will be -2.  The height and depth of the string is available in
615 the \n[rst] and \n[rsb] registers: these are groff extensions.
617 ----------------------------------------------------------------------
619 * On an SGI system, how can I make the man command use groff?
621 From David Hinds <dhinds@allegro.stanford.edu> (some of these steps
622 are unnecessary if you install with the `g' Makefile variable defined
623 as empty):
625 Create a script called 'eqn':
627  > #!/bin/sh
628  > if [ ${1:-""} = /usr/pub/eqnchar ] ; then shift ; fi
629  > geqn $*
631 and a script called 'neqn':
633  > #!/bin/sh
634  > if [ ${1:-""} = /usr/pub/eqnchar ] ; then shift ; fi
635  > geqn -Tascii $*
637 and do:
639  > ln -s gnroff nroff
641 and edit the end of the gnroff script to be:
643  > rest=`echo ${1+"$@"} | sed -e 's+/usr/lib/tmac+/usr/local/lib/groff/tmac+'`
644  > exec groff -Wall -mtty-char $T $opts $rest
646 To get PostScript output from 'man -t', you also need to create a
647 'psroff' script similar to 'nroff'.  Here are the context diffs:
649 *** /usr/local/bin/nroff        Sat Feb 13 15:51:09 1993
650 --- /usr/local/bin/psroff       Sat Feb 13 17:45:46 1993
651 ***************
652 *** 1,8 ****
653   #!/bin/sh
654 ! # Emulate nroff with groff.
656   prog="$0"
657 ! T=-Tascii
658   opts=
660   for i
661 --- 1,8 ----
662   #!/bin/sh
663 ! # Emulate psroff with groff.
665   prog="$0"
666 ! T=-Tps
667   opts=
669   for i
670 ***************
671 *** 25,30 ****
672 --- 25,33 ----
673         -Tascii|-Tlatin1)
674                 T=$1
675                 ;;
676 +       -t)
677 +               # ignore -- default is send to stdout
678 +               ;;
679         -T*)
680                 # ignore other devices
681                 ;;
682 ***************
683 *** 49,53 ****
684   rest=`echo ${1+"$@"} | sed -e 's+/usr/lib/tmac+/usr/local/lib/groff/tmac+'`
686   # This shell script is intended for use with man, so warnings are
687   # probably not wanted.  Also load nroff-style character definitions.
688 ! exec groff -Wall -mtty-char $T $opts $rest
689 --- 52,56 ----
690   rest=`echo ${1+"$@"} | sed -e 's+/usr/lib/tmac+/usr/local/lib/groff/tmac+'`
692   # This shell script is intended for use with man, so warnings are
693 ! # probably not wanted.
694 ! exec groff -Wall $T $opts $rest