summaryrefslogtreecommitdiff
path: root/aclocal.m4
diff options
context:
space:
mode:
authorwlemb <wlemb>2003-02-27 15:54:53 +0000
committerwlemb <wlemb>2003-02-27 15:54:53 +0000
commit252a944b7db71569915192fbfd903fc7f30a93c9 (patch)
treeafee11a0a276a50a284c25448133fe5df8324aa9 /aclocal.m4
parent822f6f8974d7ff491252279efcd273393382b684 (diff)
downloadgroff-252a944b7db71569915192fbfd903fc7f30a93c9.tar.gz
* doc/texinfo.tex: New version 2003-02-11.06.
* tmac/doc-common (Dt): Don't emit warning for unknown section. * tmac/groff_mdoc.man: Fix description of `Dt'. * font/devps/prologue.ps: Fix for included Postscript that does a setpagedevice -- which is now safely ignored. * NEWS: Updated. * src/devices/grops/ps.cc: Now sets the page size in the generated document. This is done in two ways: Via a %%-comment for gv and the like, and via a PageSize and setpagedevice for programs that understands Postscript proper, like ps2pdf. * src/devices/grops/ps.h: New broken-flag to avoid page size definition, if required. * src/devices/grops/grops.man: New broken-flag 16 mentioned. * doc/Makefile.in: Added -nosetpage flag (via @pnmtops_nosetpage@). Not really necessary due to the fix in prologue.ps, but cleaner: Such information does not belong in an .eps file. * doc/Makefile.sub: See doc/Makefile.in. * aclocal.m4 (GROFF_PNMTOPS_NOSETPAGE): Use P2 format for testing instead of P1 since the latter is broken in some versions of netpbm. * configure: Updated.
Diffstat (limited to 'aclocal.m4')
-rw-r--r--aclocal.m42
1 files changed, 1 insertions, 1 deletions
diff --git a/aclocal.m4 b/aclocal.m4
index a832a969..5102d316 100644
--- a/aclocal.m4
+++ b/aclocal.m4
@@ -87,7 +87,7 @@ dnl check to see whether pnmtops can handle the -nosetpage option
dnl
AC_DEFUN(GROFF_PNMTOPS_NOSETPAGE,
[AC_MSG_CHECKING([whether pnmtops can handle the -nosetpage option])
-if echo P1 2 2 0 1 1 0 | pnmtops -nosetpage > /dev/null 2>&1 ; then
+if echo P2 2 2 255 0 1 2 0 | pnmtops -nosetpage > /dev/null 2>&1 ; then
AC_MSG_RESULT(yes)
pnmtops_nosetpage="pnmtops -nosetpage"
else