CXX peace: src/pre-grn/hgraph.cpp
[s-roff.git] / PROBLEMS
blob5dde1f54560e4abee56c1572beac7b57ef87cce9
1     Copyright 1989-2000, 2001, 2002, 2003, 2004, 2005, 2008
2       Free Software Foundation, Inc.
4     Copying and distribution of this file, with or without modification,
5     are permitted in any medium without royalty provided the copyright
6     notice and this notice are preserved.
8 This file describes various problems that have been encountered in
9 compiling, installing and running groff.  Suggestions for additions or
10 other improvements to this file are welcome.
12 ----------------------------------------------------------------------
16 Generic Problems
17 ================
21 * Displaying a man page on a terminal with/without my favourite pager
22   only gives garbage.
24 groff by default now uses SGR escape sequences (`ANSI color') to
25 control the display attributes (bold, underlined, colour) on TTYs. 
26 Some terminals (e.g. `kterm') don't understand SGR, and some pagers
27 (e.g. older versions of `less' or `less' without the -R option) don't
28 understand SGR either.  There are three solutions to fix this, in order
29 of preference; please read the grotty man page for more details.
31 The fourth and probably best option is to update your terminal program
32 and pager to versions which can handle SGR.
34   1. Set the GROFF_NO_SGR environment variable.
36   2. Pass option `-c' to grotty (this is, add `-P-c' to groff's command
37      line options).
39   3. Append the following fragment to the `troffrc' file:
42 --- start ---
43 .if n \{\
44 .  nr _C \n(.C
45 .  cp 0
47 .  \" The following code sets a top-of-page trap to disable grotty's TTY
48 .  \" mode.  Since neither \X nor .output can be used before the first
49 .  \" page has started, we must use a trap.  To make it work with troff's
50 .  \" -o option, we wait until the first printed page.
52 .  de sgr@dummy
53 .  .
55 .  rn wh wh@old
57 .  \" The stand-alone version.  If no other trap is set, we can safely
58 .  \" insert the truncated vertical space caused by the trap (if any).
59 .  \" Otherwise we assume that the document's main macro package takes
60 .  \" care of that.  As soon as the trap has been executed, it is removed.
61 .  de1 no@sgr
62 .    if \\n[.P] \{\
63 .      if (\\n[.t] == \\n[.p]) \{\
64 .        rn wh@old wh
65 .        rm no@sgr
66 .        wh 0
67 .        sp \\n[.trunc]
68 .        nop \X'tty: sgr 0'
69 .        sp -1
70 .    \}\}
71 .  .
73 .  wh@old 0 no@sgr
75 .  \" The piggyback version to be appended to macros planted with the
76 .  \" modified `wh' request.
77 .  de1 no@sgr1
78 .    if \\n[.P] \{\
79 .      rn wh@old wh
80 .      ds no@sgr1
81 .      nop \X'tty: sgr 0'
82 .      sp -1
83 .    \}
84 .  .
86 .  \" We redefine the `wh' request so that `no@sgr1' is appended to
87 .  \" the trap macro.
88 .  de1 wh
89 .    am1 \\$2 sgr@dummy
90 .      no@sgr1
91 .    sgr@dummy
92 .    wh@old \\$1 \\$2
93 .  .
95 .  cp \n[_C]
96 .\}
97 --- end ---
99 ----------------------------------------------------------------------
101 * The UTF-8 output of grotty has strange characters for the minus, the
102   hyphen, and the right quote.  Why?
104 The used Unicode characters (U+2212 for the minus sign and U+2010 for
105 the hyphen) are the correct ones, but many programs can't search them
106 properly.  The same is true for the right quote (U+201D).  To map those
107 characters back to the ASCII characters, insert the following code
108 snippet into the `troffrc' configuration file:
110 .if '\*[.T]'utf8' \{\
111 .  char \- \N'45'
112 .  char  - \N'45'
113 .  char  ' \N'39'
116 ----------------------------------------------------------------------
118 * My document says that the current year is 19100, not 2000.
120 In groff, as in traditional troff, the yr number register yields the
121 year minus 1900.  Unfortunately, there is a longstanding bug in the
122 Troff User's Manual <http://cm.bell-labs.com/cm/cs/cstr/54.ps.gz>,
123 which incorrectly claims that yr is the last two digits of the year.
124 This claim was never true of either Unix troff or of groff.
126 If your text looks like this:
128         .\" Wrong:
129         This document was formatted in 19\n(yr.
131 you can correct it as follows:
133         This document was formatted in \n[year].
135 or, if you want to be portable to older troff versions, as follows:
137         .nr y4 1900+\n(yr
138         This document was formatted in \n(y4.
140 ----------------------------------------------------------------------
142 * groff can't handle my troff document.  It works fine with AT&T
143   troff.
145 Read the section on incompatibilities in groff_diff(7).  Try using
146 the -C option.  Alternatively there's the sed script
147 `tmac/fixmacros.sed' which attempts to edit a file of macros so
148 that it can be used with groff without the -C flag.
150 ----------------------------------------------------------------------
152 * gtroff doesn't understand lines like `.ce99' with no space between
153   the name of the request or macro and the arguments.
155 gtroff requires a space between macro or request and its arguments
156 because it allows the use of long names for macros and requests.  You
157 can use the -C option or the `cp' request to put gtroff into a
158 compatibility mode in which it is not possible to use long names for
159 macros but in which no space is required between macros and their
160 arguments.  The use of compatibility mode is strongly discouraged.
162 ----------------------------------------------------------------------
164 * groff -Tdvi produces dvi files that use fonts at weird
165   magnifications.
167 Yes, it does.  You may need to compile fonts with Metafont at these
168 magnifications.  The CompileFonts script in the devdvi/generate
169 directory may help you to do this.  (It takes a *long* time on
170 slow computers.)
172 ----------------------------------------------------------------------
174 * Groff doesn't use the font names I'm used to.
176 Use the `ftr' request.  See groff_diff(7).
178 ----------------------------------------------------------------------
180 * gpic output is not centered horizontally; pictures sometimes run off
181   the bottom of the page.
183 The macro package you are using is not supplying appropriate
184 definitions of PS and PE.  Give groff a -mpic option.
186 ----------------------------------------------------------------------
188 * gpic doesn't accept the syntax `chop N M' for chopping both ends of
189   a line.
191 The correct syntax is `chop N chop M'.
193 ----------------------------------------------------------------------
195 * With gpic -t, when I print `line ->; box' using a dvi to ps program,
196   the arrow head sticks through into the inside of the box.
198 The dvi to ps program should be modified to set the line cap and line
199 join parameters to 1 while printing tpic specials.
201 ----------------------------------------------------------------------
203 * gtroff gives warnings about lines like
204   .ev   \" a comment
205   (with a tab after the .ev).
207 A tab character cannot be used as a substitute for a space character
208 (except in one case: between a control character at the beginning of a
209 line and the name of a macro or request).  For example, in Unix troff
211   .ps   \" restore the previous point size
213 (with a tab after the .ps) does NOT restore the previous point-size;
214 instead it is silently ignored.  Since this is very likely to be
215 an error, gtroff can give a warning about it.  If you want to align
216 comments, you can do it like this:
218   .ev\"                         \" a comment
220 ----------------------------------------------------------------------
222 * I don't like the page headers and footers produced by groff -man.
224 There seem to be many different styles of page header and footer
225 produced by different versions of the -man macros.  You need to
226 put modified macros from tmac/an-old.tmac into man.local.  More
227 information is available in groff_man(7).
229 ----------------------------------------------------------------------
231 * Where can I get grap?
233 Ted Faber <faber@lunabase.org> has written a freely available grap:
235   http://www.lunabase.org/~faber/Vault/software/grap/
237 You need version 1.42 or newer.
239 ----------------------------------------------------------------------
241 * The \n(st and \n(sb registers don't seem to work.  I thought \w set
242   them to the height and depth of its argument, but the registers
243   always seem to be 0.
245 \n(st and \n(sb aren't supposed to give the height and depth of the
246 string rather they give the minimum and maximum vertical displacement
247 of the baseline.  For example for \v'2u'\v'-3u', \n(st is 1 and
248 \n(sb is -2.  The height and depth of the string is available in
249 the \n[rst] and \n[rsb] registers: these are groff extensions.
251 ----------------------------------------------------------------------
253 * While formatting a manual page, groff complains about not being able
254   to break lines.  The problem seems to be caused by a line like:
255   .TP \w'label'+2
257 The -man documentation says that the default scale indicator for TP
258 macro is `n'.  The groff -man macros implement this correctly, so that
259 the argument is evaluated as if it were
261   \w'label'n+2n
263 The Unix -man macros don't implement this correctly (probably because
264 it's hard to do in Unix troff); they just append `n' to the entire
265 argument, so that it is evaluated as if it were
267   \w'label'u+2n
269 The solution is to fix the manual page:
271   .TP \w'label'u+2
273 ----------------------------------------------------------------------
275 * I'm having problems formatting man pages produced by the perl
276   wrapman script.
278 Some versions of wrapman have a superfluous blank line before the .TH
279 line.  This must be deleted.  Then either use groff -C, or apply the
280 following patch:
282 *** wrapman.~2~ Sun Jan 19 12:10:24 1992
283 --- wrapman     Tue Aug 10 02:06:41 1993
284 ***************
285 *** 35,41 ****
286       $line1 .= <IN> if $line1 =~ /eval/;
287       $line1 .= <IN> if $line1 =~ /argv/;
288       $line2 = <IN>;
289 !     next if $line2 eq "'di';\n";
290   
291       # Pull the old switcheroo.
292   
293 --- 35,41 ----
294       $line1 .= <IN> if $line1 =~ /eval/;
295       $line1 .= <IN> if $line1 =~ /argv/;
296       $line2 = <IN>;
297 !     next if $line2 eq "'di ';\n" || $line2 eq "'di';\n";
298   
299       # Pull the old switcheroo.
300   
301 ***************
302 *** 49,56 ****
303   
304       print OUT $line1;
305       print OUT <<EOF;
306 ! 'di';
307 ! 'ig00';
308   #
309   # $header
310   #
311 --- 49,58 ----
312   
313       print OUT $line1;
314       print OUT <<EOF;
315 ! 'di ';
316 ! 'ds 00 \\"';
317 ! 'eo ';
318 ! 'ig 00 ';
319   #
320   # $header
321   #
322 ***************
323 *** 72,85 ****
324   
325       # These next few lines are legal in both Perl and nroff.
326   
327 ! $null.00;                       # finish .ig
328    
329   'di           \\" finish diversion--previous line must be blank
330   .nr nl 0-1    \\" fake up transition to first page again
331   .nr % 0         \\" start at page 1
332 ! '; __END__ ##### From here on it's a standard manual page #####
333   .TH $PROG 1 "$month $mday, 19$year"
334 - .AT 3
335   .SH NAME
336   $prog \\- whatever
337   .SH SYNOPSIS
338 --- 74,87 ----
339   
340       # These next few lines are legal in both Perl and nroff.
341   
342 ! $null.00 ;                      # finish .ig
343 ! 'ec \\';
344    
345   'di           \\" finish diversion--previous line must be blank
346   .nr nl 0-1    \\" fake up transition to first page again
347   .nr % 0         \\" start at page 1
348 ! .\\"'; __END__ ##### From here on it's a standard manual page #####
349   .TH $PROG 1 "$month $mday, 19$year"
350   .SH NAME
351   $prog \\- whatever
352   .SH SYNOPSIS
354 ----------------------------------------------------------------------
356 * groff uses up an enormous amount of memory processing large files.
357   I'm using 386BSD 0.1.
359 386BSD includes an old version of g++, 1.39, which has a bug that
360 causes a major memory leak in gtroff.  Apply the following fix to g++
361 and recompile groff:
363 *** cplus-decl.c.~1~    Mon Aug  6 05:28:59 1990
364 --- cplus-decl.c        Wed Jun  5 08:55:04 1991
365 ***************
366 *** 7951,7961 ****
367   
368         /* At the end, call delete if that's what's requested.  */
369         if (TREE_GETS_DELETE (current_class_type))
370         exprstmt = build_method_call (build1 (NOP_EXPR, TYPE_POINTER_TO (current_class_type), error_mark_node),
371                                       get_identifier (OPERATOR_DELETE_FORMAT),
372 !                                     build_tree_list (NULL_TREE, integer_zero_node),
373                                       NULL_TREE, LOOKUP_NORMAL);
374         else if (TYPE_USES_VIRTUAL_BASECLASSES (current_class_type))
375         exprstmt = build_x_delete (ptr_type_node, current_class_decl, 0);
376         else
377         exprstmt = 0;
378 --- 7951,7961 ----
379   
380         /* At the end, call delete if that's what's requested.  */
381         if (TREE_GETS_DELETE (current_class_type))
382         exprstmt = build_method_call (build1 (NOP_EXPR, TYPE_POINTER_TO (current_class_type), error_mark_node),
383                                       get_identifier (OPERATOR_DELETE_FORMAT),
384 !                                     build_tree_list (NULL_TREE, current_class_decl),
385                                       NULL_TREE, LOOKUP_NORMAL);
386         else if (TYPE_USES_VIRTUAL_BASECLASSES (current_class_type))
387         exprstmt = build_x_delete (ptr_type_node, current_class_decl, 0);
388         else
389         exprstmt = 0;
393 Printing and Display Problems
394 =============================
398 * I'm having problems including PostScript illustrations (EPS) using
399   the PSPIC macro and/or \X'ps: import ...'.
401 A PostScript document must meet three requirements in order to be
402 included with the PSPIC macro: it must comply with the Adobe Document
403 Structuring Conventions; it must contain a BoundingBox line; it must
404 be `well-behaved'.  The BoundingBox line should be of the form:
406   %%BoundingBox: llx lly urx ury
408 where llx, lly, urx, ury are the coordinates of the lower left x,
409 lower left y, upper right x, upper right y of the bounding box of
410 marks on the page expressed as integers in the default PostScript
411 coordinate system (72 units per inch, origin at bottom left corner).
413 The most convenient program to get the bounding box of a document is
414 the `ps2epsi' script coming with GhostScript.
416 If you can't use this program, another useful tactic is to print out
417 the illustration by itself (you may need to add a `showpage' at the
418 end), and physically measure the bounding box.  For more detail on
419 these requirements, read the specification of Encapsulated PostScript
420 format.  (This is available from the Adobe file server; send a message
421 with a body of `help' to ps-file-server@adobe.com.)
423 If an EPS file to be included via \X'ps: import' does not start with
424 `%!PS-Adobe-...', gtroff still includes the file, but grops does
425 not add any fonts to the generated output file that are listed in the
426 EPS file, even though the files are listed in the `download' file and
427 are available in the devps directory.
429 ----------------------------------------------------------------------
431 * I've configured groff for A4 paper, but gtroff still seems to think
432   that the length of a page (as returned by `\n(.p') is 11 inches.
434 This is intentional.  The PAGE option during configuration is used
435 only by grops.  For compatibility with ditroff, the default page
436 length in gtroff is always 11 inches.  The page length can be changed
437 with the `pl' request.
439 A convenient way to set paper dimensions is to use the -dpaper option
440 of groff, together with proper -P options for the postprocessor
441 (overriding the default).  For example, use the following for PS
442 output on A4 paper in landscape orientation:
444   groff -Tps -dpaper=a4l -P-pa4 -P-l -ms foo.ms > foo.ps
446 See groff_tmac(5) for more information.
448 ----------------------------------------------------------------------
450 * When I print the output of groff -Tps, the output is always shifted
451   up by about 0.7 inches; I'm using 8.5x11 inch paper.
453 Make sure that the paper size is `letter'.  See groff_tmac(5).
455 ----------------------------------------------------------------------
457 * When I try to run gxditview, I get the error:
458   Error: Widget viewport has zero width and/or height
460 This error means you haven't correctly installed the application
461 defaults file, GXditview.ad; `make install' does this for you
462 automatically, so either you didn't do `make install', or you haven't
463 passed a good `--appresdir=<DIR>' argument to groff's configure script.
465 See the X(7) man page for information how and where application resource
466 files have to be located.  Look for the XAPPLRESDIR and XUSERFILESEARCHPATH
467 environment variables.
469 ----------------------------------------------------------------------
471 * When I preview documents using -TX75 or -TX100, the layout is not
472   the same as when I print the document with -Tps: the line and page
473   breaks come in different places.
475 Use `groff -X -Tps'.
477 ----------------------------------------------------------------------
479 * When I try to print the output of groff -Tps, I get no output at all
480   from the printer, and the log file shows the error
481   %%[ error: undefined; offendingcommand: BP ]%%
482   I'm using TranScript spooling software.
484 This is a bug in the page reversal filter in early versions of
485 TranScript.  Change the `broken' parameter in
486 /usr/local/lib/groff/font/devps/DESC to 7.
488 ----------------------------------------------------------------------
490 * When I preview groff -Tps output using the Sun OpenWindows 2.0
491   pageview program, all the pages are displayed on top of each other.
493 This is a defect in pageview.  Change the `broken' parameter in
494 /usr/local/lib/groff/font/devps/DESC to 2.
496 ----------------------------------------------------------------------
498 * With groff -TX75, -TX100 or -X, I can only view the first page.
500 The left mouse button brings up a menu that allows you to view other
501 pages.
503 ----------------------------------------------------------------------
505 * When I print the output of groff -Tdvi, I just get a black dot in
506   upper left corner.
508 Some dvi drivers (notably early versions of xtex) do not correctly
509 handle dvi files that use a resolution different from that used by dvi
510 files produced by TeX.  Try getting a more up to date driver.
512 ----------------------------------------------------------------------
514 * How can I use groff with an old LaserJet printer that doesn't work
515   with groff -Tlj4?
517 You have at least 3 options:
519 - use groff -Tps with GNU Ghostscript;
521 - use groff -Tdvi with a TeX .dvi to Laserjet driver;
523 - use groff with the LaserJet driver in Chris Lewis' psroff package
524   (available for ftp from:
525   ftp.uunet.ca:/distrib/chris_lewis/psroff3.0pl17).
527 ----------------------------------------------------------------------
529 * Groff seems to generate level 3 Postscript, but my printer is only a
530   level 1 or 2 PostScript printer.
532 In fact groff generates only level 2 PostScript (or rather level 1
533 with some extensions; see grops(1) for more information how to disable
534 them).  The `%!PS-Adobe-3.0' comment at the beginning of PostScript
535 output generated by groff indicates that the file conforms to
536 version 3.0 of the Adobe Document Structuring Conventions.  The output
537 generated by groff should be printable on any PostScript printer.
538 Problems with groff output's not printing are most often caused by the
539 spooling system.
543 Platform-Dependent Macro Problems
544 =================================
548 * I get lots of errors when I use groff with the AT&T -mm macros.
550 Use the groff -mm macros.
552 ----------------------------------------------------------------------
554 * groff produces wrapper macros for `ms' and friends which call the
555   system's original macros.  Then, to get groff's ms macro package I
556   have to use `-mgs' instead `-ms'.  Can I avoid this?
558 Yes.  Configure and compile groff as usual, but install it with
560   make install tmac_wrap=""
562 Then no wrapper files are produced, and `-ms' uses groff's `ms'
563 macros.
565 ----------------------------------------------------------------------
567 * I'm having problems formatting HP-UX 9.0 man pages with groff -man.
569 Copy HP's tmac.an into /usr/local/share/groff/site-tmac/an.tmac, and
570 either put `.cp 1' at the beginning or filter it (and any files it
571 .so's) through tmac/fixmacros.sed.
573 ----------------------------------------------------------------------
575 * I get errors using the Unix -ms macros with groff -e -C.
577 Apply this change:
579 *** /usr/lib/ms/ms.eqn  Tue Apr 25 02:14:28 1989
580 --- ms.eqn      Sun Nov 11 10:33:59 1990
581 ***************
582 *** 22,29 ****
583   ..
584   .     \" EN - end of a displayed equation
585   .de EN
586 ! .if !\a\\*(10\a\a .br
587   .di
588   .rm EZ
589   .nr ZN \\n(dn
590   .if \\n(ZN>0 .if \\n(YE=0 .LP
591 --- 22,30 ----
592   ..
593   .     \" EN - end of a displayed equation
594   .de EN
595 ! .if \\n(.k>0 .br
596   .di
597 + .ds 10 \\*(EZ\\
598   .rm EZ
599   .nr ZN \\n(dn
600   .if \\n(ZN>0 .if \\n(YE=0 .LP
602 ----------------------------------------------------------------------
604 * I'm having problems formatting Ultrix man pages with groff -man.
606 The Ultrix man pages use a number of non-standard extensions to the
607 Unix man macros.  One solution is to use the Ultrix -man macros with
608 groff.  Copy /usr/lib/tmac/tmac.an to
609 /usr/local/share/groff/site-tmac/an.tmac and apply the following patch
610 (from Frank Wortner):
612 *** /usr/local/lib/groff/tmac/tmac.an     Wed Sep  9 12:29:28 1992
613 --- /usr/lib/tmac/tmac.an       Fri Jul 24 19:58:19 1992
614 ***************
615 *** 489,495 ****
616   .     \" make special case of shift out of italic
617   .de }S
618   .ds ]F
619 ! .if \\$12 .if !\\$5 .ds ]F \^
620   .ie !\\$4 .}S \\$2 \\$1 "\\$3\f\\$1\\$4\\*(]F" "\\$5" "\\$6" "\\$7" "\\$8" "\\$9"
621   .el \\$3
622   .}f
623 --- 489,495 ----
624   .     \" make special case of shift out of italic
625   .de }S
626   .ds ]F
627 ! .if \\$12 .if !\\$5 .ds ]F\^
628   .ie !\\$4 .}S \\$2 \\$1 "\\$3\f\\$1\\$4\\*(]F" "\\$5" "\\$6" "\\$7" "\\$8" "\\$9"
629   .el \\$3
630   .}f
632 Another possible solution is to install tmac/man.ultrix as
633 /usr/local/share/groff/site-tmac/man.local.
635 ----------------------------------------------------------------------
637 * On an SGI system, how can I make the man command use groff?
639 From David Hinds <dhinds@allegro.stanford.edu> (some of these steps
640 are unnecessary if you install with the `g' Makefile variable defined
641 as empty):
643 Create a script called 'eqn':
645  > #! /bin/sh
646  > if [ ${1:-""} = /usr/pub/eqnchar ] ; then shift ; fi
647  > geqn $*
649 and a script called 'neqn':
651  > #! /bin/sh
652  > if [ ${1:-""} = /usr/pub/eqnchar ] ; then shift ; fi
653  > geqn -Tascii $*
655 and do:
657  > ln -s gnroff nroff
659 and edit the end of the gnroff script to be:
661  > rest=`echo ${1+"$@"} | sed -e 's+/usr/lib/tmac+/usr/local/lib/groff/tmac+'`
662  > exec groff -Wall -mtty-char $T $opts $rest
664 To get PostScript output from 'man -t', you also need to create a
665 'psroff' script similar to 'nroff'.  Here are the context diffs:
667 *** /usr/local/bin/nroff        Sat Feb 13 15:51:09 1993
668 --- /usr/local/bin/psroff       Sat Feb 13 17:45:46 1993
669 ***************
670 *** 1,8 ****
671   #! /bin/sh
672 ! # Emulate nroff with groff.
674   prog="$0"
675 ! T=-Tascii
676   opts=
678   for i
679 --- 1,8 ----
680   #! /bin/sh
681 ! # Emulate psroff with groff.
683   prog="$0"
684 ! T=-Tps
685   opts=
687   for i
688 ***************
689 *** 25,30 ****
690 --- 25,33 ----
691         -Tascii|-Tlatin1)
692                 T=$1
693                 ;;
694 +       -t)
695 +               # ignore -- default is send to stdout
696 +               ;;
697         -T*)
698                 # ignore other devices
699                 ;;
700 ***************
701 *** 49,53 ****
702   rest=`echo ${1+"$@"} | sed -e 's+/usr/lib/tmac+/usr/local/lib/groff/tmac+'`
704   # This shell script is intended for use with man, so warnings are
705   # probably not wanted.  Also load nroff-style character definitions.
706 ! exec groff -Wall -mtty-char $T $opts $rest
707 --- 52,56 ----
708   rest=`echo ${1+"$@"} | sed -e 's+/usr/lib/tmac+/usr/local/lib/groff/tmac+'`
710   # This shell script is intended for use with man, so warnings are
711 ! # probably not wanted.
712 ! exec groff -Wall $T $opts $rest
716 Compilation Problems
717 ====================
721 * Compilation dies with
723     y.tab.c: In function `int yyparse()':
724     y.tab.c: `size_t' undeclared in namespace `std'
726 * bison reports conflicts (either on stderr or in the `pic.output'
727   file) while processing `pic.y', and the produced pic binary doesn't
728   work at all.
730 You need bison version 1.875b or greater.  Alternatively, use yacc or
731 byacc.
733 ----------------------------------------------------------------------
735 * There are many empty `Makefile.dep' files.  Is this a bug?
737 No.  Real dependency files are created with a `make depend' call.
739 ----------------------------------------------------------------------
741 * On HP-UX, the compiler complains about missing symbol `alloca'.
745   export LDFLAGS=-lPW
747 before starting the configure script.
749 ----------------------------------------------------------------------
751 * The configure script fails on OS/390 (z/OS) Unix.
753 [This has been fixed in z/OS V1R3 (aka OS/390 R13).]
755 There is a bug in the Language Environment (LE) whereby the test
756 program for static destructors fails.  You see the message
757 `configure: error: a working C++ compiler is required'.
759 Applying PTF UQ42006 is supposed to fix this, but the test program is
760 still returning the wrong value (1).  To work around this problem, you
761 can comment out the following in the configure script (near line 2029).
762 This effectively bypasses the test (static constructors and
763 destructors do actually work properly):
765 #if { (eval echo "$as_me:2029: \"$ac_link\"") >&5
766 #  (eval $ac_link) 2>&5
767 #  ac_status=$?
768 #  echo "$as_me:2032: \$? = $ac_status" >&5
769 #  (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
770 #  { (eval echo "$as_me:2034: \"$ac_try\"") >&5
771 #  (eval $ac_try) 2>&5
772 #  ac_status=$?
773 #  echo "$as_me:2037: \$? = $ac_status" >&5
774 #  (exit $ac_status); }; }; then
775 #  echo "$as_me:2039: result: yes" >&5
776 #echo "${ECHO_T}yes" >&6
777 #else
778 #  echo "$as_me: program exited with status $ac_status" >&5
779 #echo "$as_me: failed program was:" >&5
780 #cat conftest.$ac_ext >&5
781 #echo "$as_me:2045: result: no" >&5
782 #echo "${ECHO_T}no" >&6;{ { echo "$as_me:2046: error: a working C++ compiler is required" >&5
783 #echo "$as_me: error: a working C++ compiler is required" >&2;}
784 #   { (exit 1); exit 1; }; }
787 ----------------------------------------------------------------------
789 * I get errors when I try to compile groff with DEC C++.
791 Fix the declaration of write() in <unistd.h> so that the second
792 argument is a const char *.  Fix the declaration of open() in
793 <sys/file.h> so that the first argument is a const char *.
795 ----------------------------------------------------------------------
797 * On a host using Unix make (e.g. Solaris), if you are compiling for
798   multiple architectures by building in a subdirectory, the make stops
799   with a message like this:
801     make: Fatal error: Don't know how to make target `assert.o'
803   or like this:
805     make: Fatal error: Can't find /u/src/groff/src/include/Makefile.sub': No such file or directory
807 This occurs because GNU make and Unix make handle VPATH differently,
808 and the groff build relies on GNU make's VPATH handling.
810 Use GNU make <http://www.gnu.org/software/make/> to work around this.
811 In Solaris 8 and 9, GNU make is on the Software Companion CD in
812 package SFWgmake and is installed as /opt/sfw/bin/gmake.  Prebuilt
813 versions of GNU make for Solaris are also available from
814 sunfreeware.com.
816 ----------------------------------------------------------------------
818 * On Ultrix, the make program stops with the message
820     *** Error code 1
822     Stop.
824   for no apparent reason.
826 Use GNU make.
828 ----------------------------------------------------------------------
830 * I'm having problems compiling groff on 386BSD 0.1.
832 If you're using ash as /bin/sh, you'll need the following patch.
834 *** gendef.sh.org       Sun Jun 30 13:30:36 1991
835 --- gendef.sh   Sun Feb 28 10:23:49 1993
836 ***************
837 *** 3,9 ****
838   file=$1
839   shift
840   
841 ! defs="#define $1"
842   shift
843   for def
844   do
845 --- 3,10 ----
846   file=$1
847   shift
848   
849 ! x=$1
850 ! defs="#define $x"
851   shift
852   for def
853   do
855 You'll also need to change dirnamemax.c so that it doesn't use
856 pathconf().
858 ----------------------------------------------------------------------
860 * While compiling on Xenix, ranlib libgroff.a fails.
862 The system ranlib can't handle externals longer than 40 characters.
863 Use the ranlib included in demon.co.uk:/pub/xenix/g++-1.40.3a.v1
864 instead.
866 ----------------------------------------------------------------------
868 * I get errors when I try to compile groff with Sun C++ version 3 or
869   earlier.
871 Groff requires header files that are moderately compatible with AT&T
872 C++ and ANSI C.  With some versions of Sun C++, the supplied header
873 files need some of the following changes to meet this requirement:
874 <string.h> must declare the mem* functions, (just add `#include
875 <memory.h>' to <string.h>); the first argument to fopen and freopen
876 should be declared as `const char *'; the first argument to fread
877 should be declared as `void *'; the first argument to fwrite should be
878 declared as `const void *'; malloc should be declared to return
879 `void *'; in <alloca.h>, the declaration `extern "C" { void
880 *__builtin_alloca(int); }' should be added; in <sys/signal.h> the
881 return type and the second argument type of signal() should be changed
882 to be `void (*)(int)'.
884 You can either change them in place, or copy them to some other
885 directory and include that directory with a -I option.
887 ----------------------------------------------------------------------
889 * I get errors when I try to compile groff with Forte Development 6
890   or 6u1, or Sun C++ version 5.0 through 5.2.
892 This is a known problem; see Sun bug #4301919.  See Sun patches
893 109482, 109490, 109508, and 109509 for fixes.
895 ----------------------------------------------------------------------
897 * I get warnings from the Sun linker while using gcc 3.4.0:
899   ld: warning: relocation error: R_SPARC_UA32:
900       file groff/src/libs/libgroff/libgroff.a(getopt.o): symbol optarg:
901       external symbolic relocation against non-allocatable
902       section .debug_info; cannot be processed at runtime:
903       relocation ignored
905 This seems to be a known problem (Sun bugs #4910101 and #4910810,
906 filed in September 2003; gcc bug #15599, filed May 2004) without a
907 public fix as of this writing.  A work-around is to use option
908 `-gstabs+' instead of `-g' (and a high probability that the output is
909 only debuggable with gdb but not with Sun's debuggers).
911 ----------------------------------------------------------------------
913 * I get lots of `numeric overflow' error messages whenever I run
914   groff; I compiled groff with AT&T C++ 2.0 with an ANSI C compiler.
916 Make sure -DCFRONT_ANSI_BUG is included in DEFINES in the top-level
917 Makefile.  If that doesn't solve the problem, define INT_MIN as
918 -INT_MAX in libgroff/lib.h.
920 ----------------------------------------------------------------------
922 * When compiling on MacOS X, groff compiles but does not run well,
923   especially `eqn', causing many `can't break line' messages.
925 Use  ./configure CXX=g++2  then make as usual.