- Nuke #ifdef SCOPEDROUTING. It was never enabled and is useless now[1].
[dragonfly.git] / contrib / groff / aclocal.m4
1 dnl Autoconf macros for groff.
2 dnl Copyright (C) 1989-1995, 2001, 2002 Free Software Foundation, Inc.
3 dnl 
4 dnl This file is part of groff.
5 dnl 
6 dnl groff is free software; you can redistribute it and/or modify it under
7 dnl the terms of the GNU General Public License as published by the Free
8 dnl Software Foundation; either version 2, or (at your option) any later
9 dnl version.
10 dnl 
11 dnl groff is distributed in the hope that it will be useful, but WITHOUT ANY
12 dnl WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 dnl FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14 dnl for more details.
15 dnl 
16 dnl You should have received a copy of the GNU General Public License along
17 dnl with groff; see the file COPYING.  If not, write to the Free Software
18 dnl Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19 dnl
20 dnl
21 AC_DEFUN(GROFF_PRINT,
22 [if test -z "$PSPRINT"; then
23         AC_CHECK_PROGS(LPR,lpr)
24         AC_CHECK_PROGS(LP,lp)
25         if test -n "$LPR" && test -n "$LP"; then
26                 # HP-UX provides an lpr command that emulates lpr using lp,
27                 # but it doesn't have lpq; in this case we want to use lp
28                 # rather than lpr.
29                 AC_CHECK_PROGS(LPQ,lpq)
30                 test -n "$LPQ" || LPR=
31         fi
32         if test -n "$LPR"; then
33                 PSPRINT="$LPR"
34         elif test -n "$LP"; then
35                 PSPRINT="$LP"
36         fi
37 fi
38 AC_SUBST(PSPRINT)
39 AC_MSG_CHECKING([for command to use for printing PostScript files])
40 AC_MSG_RESULT($PSPRINT)
41 # Figure out DVIPRINT from PSPRINT.
42 AC_MSG_CHECKING([for command to use for printing dvi files])
43 if test -n "$PSPRINT" && test -z "$DVIPRINT"; then
44         if test "X$PSPRINT" = "Xlpr"; then
45                 DVIPRINT="lpr -d"
46         else
47                 DVIPRINT="$PSPRINT"
48         fi
49 fi
50 AC_SUBST(DVIPRINT)
51 AC_MSG_RESULT($DVIPRINT)])dnl
52 dnl
53 dnl
54 dnl Bison generated parsers have problems with C++ compilers other than g++.
55 dnl So byacc is preferred over bison.
56 dnl
57 AC_DEFUN(GROFF_PROG_YACC,
58 [AC_CHECK_PROGS(YACC, byacc 'bison -y', yacc)])dnl
59 dnl
60 dnl
61 dnl The following programs are needed for grohtml.
62 dnl
63 AC_DEFUN(GROFF_HTML_PROGRAMS,
64 [make_html=html
65 make_install_html=install_html
66 AC_CHECK_PROG(pnmcut, pnmcut, found, missing)
67 AC_CHECK_PROG(pnmcrop, pnmcrop, found, missing)
68 AC_CHECK_PROG(pnmtopng, pnmtopng, found, missing)
69 AC_CHECK_PROG(gs, gs gsos2, found, missing)
70 AC_CHECK_PROG(psselect, psselect, found, missing)
71 case "x$pnmcut$pnmcrop$pnmtopng$gs$psselect" in
72 *missing*)
73         make_html=
74         make_install_html=
75         AC_MSG_WARN([
76
77   Since one or more of the above five programs can't be found in the path,
78   the HTML backend of groff (grohtml) won't work properly.  Consequently,
79   no documentation in HTML format is built and installed.
80 ]) ;;
81 esac
82 AC_SUBST(make_html)
83 AC_SUBST(make_install_html)])dnl
84 dnl
85 dnl
86 dnl GROFF_CSH_HACK(if hack present, if not present)
87 dnl
88 AC_DEFUN(GROFF_CSH_HACK,
89 [AC_MSG_CHECKING([for csh hash hack])
90 cat <<EOF >conftest.sh
91 #!/bin/sh
92 true || exit 0
93 export PATH || exit 0
94 exit 1
95 EOF
96 chmod +x conftest.sh
97 if echo ./conftest.sh | (csh >/dev/null 2>&1) >/dev/null 2>&1; then
98         AC_MSG_RESULT(yes); $1
99 else
100         AC_MSG_RESULT(no); $2
101 fi
102 rm -f conftest.sh])dnl
103 dnl
104 dnl
105 dnl From udodo!hans@relay.NL.net (Hans Zuidam)
106 dnl
107 AC_DEFUN(GROFF_ISC_SYSV3,
108 [AC_MSG_CHECKING([for ISC 3.x or 4.x])
109 changequote(,)dnl
110 if grep '[34]\.' /usr/options/cb.name >/dev/null 2>&1
111 changequote([,])dnl
112 then
113         AC_MSG_RESULT(yes)
114         AC_DEFINE(_SYSV3, 1,
115                   [Define if you have ISC 3.x or 4.x.])
116 else
117         AC_MSG_RESULT(no)
118 fi])dnl
119 dnl
120 dnl
121 AC_DEFUN(GROFF_POSIX,
122 [AC_MSG_CHECKING([whether -D_POSIX_SOURCE is necessary])
123 AC_LANG_PUSH(C++)
124 AC_TRY_COMPILE([#include <stdio.h>
125 extern "C" { void fileno(int); }],,
126 AC_MSG_RESULT(yes);AC_DEFINE(_POSIX_SOURCE, 1,
127                              [Define if -D_POSIX_SOURCE is necessary.]),
128 AC_MSG_RESULT(no))
129 AC_LANG_POP(C++)])dnl
130 dnl
131 dnl
132 dnl srand() of SunOS 4.1.3 has return type int instead of void
133 dnl
134 AC_DEFUN(GROFF_SRAND,
135 [AC_LANG_PUSH(C++)
136 AC_MSG_CHECKING([for return type of srand])
137 AC_TRY_COMPILE([#include <stdlib.h>
138 extern "C" { void srand(unsigned int); }],,
139 AC_MSG_RESULT(void);AC_DEFINE(RET_TYPE_SRAND_IS_VOID, 1,
140                               [Define if srand() returns void not int.]),
141 AC_MSG_RESULT(int))
142 AC_LANG_POP(C++)])dnl
143 dnl
144 dnl
145 AC_DEFUN(GROFF_SYS_NERR,
146 [AC_LANG_PUSH(C++)
147 AC_MSG_CHECKING([for sys_nerr in <errno.h> or <stdio.h>])
148 AC_TRY_COMPILE([#include <errno.h>
149 #include <stdio.h>],
150 [int k; k = sys_nerr;],
151 AC_MSG_RESULT(yes);AC_DEFINE(HAVE_SYS_NERR, 1,
152                              [Define if you have sysnerr in <errno.h> or
153                               <stdio.h>.]),
154 AC_MSG_RESULT(no))
155 AC_LANG_POP(C++)])dnl
156 dnl
157 dnl
158 AC_DEFUN(GROFF_SYS_ERRLIST,
159 [AC_MSG_CHECKING([for sys_errlist[] in <errno.h> or <stdio.h>])
160 AC_TRY_COMPILE([#include <errno.h>
161 #include <stdio.h>],
162 [int k; k = (int)sys_errlist[0];],
163 AC_MSG_RESULT(yes);AC_DEFINE(HAVE_SYS_ERRLIST, 1,
164                              [Define if you have sys_errlist in <errno.h>
165                               or in <stdio.h>.]),
166 AC_MSG_RESULT(no))])dnl
167 dnl
168 dnl
169 AC_DEFUN(GROFF_OSFCN_H,
170 [AC_LANG_PUSH(C++)
171 AC_MSG_CHECKING([C++ <osfcn.h>])
172 AC_TRY_COMPILE([#include <osfcn.h>],
173 [read(0, 0, 0); open(0, 0);],
174 AC_MSG_RESULT(yes);AC_DEFINE(HAVE_CC_OSFCN_H, 1,
175                              [Define if you have a C++ <osfcn.h>.]),
176 AC_MSG_RESULT(no))
177 AC_LANG_POP(C++)])dnl
178 dnl
179 dnl
180 AC_DEFUN(GROFF_LIMITS_H,
181 [AC_LANG_PUSH(C++)
182 AC_MSG_CHECKING([C++ <limits.h>])
183 AC_TRY_COMPILE([#include <limits.h>],
184 [int x = INT_MIN; int y = INT_MAX; int z = UCHAR_MAX;],
185 AC_MSG_RESULT(yes);AC_DEFINE(HAVE_CC_LIMITS_H, 1,
186                              [Define if you have a C++ <limits.h>.]),
187 AC_MSG_RESULT(no))
188 AC_LANG_POP(C++)])dnl
189 dnl
190 dnl
191 AC_DEFUN(GROFF_TIME_T,
192 [AC_LANG_PUSH(C++)
193 AC_MSG_CHECKING([for declaration of time_t])
194 AC_TRY_COMPILE([#include <time.h>],
195 [time_t t = time(0); struct tm *p = localtime(&t);],
196 AC_MSG_RESULT(yes),
197 AC_MSG_RESULT(no);AC_DEFINE(LONG_FOR_TIME_T, 1,
198                             [Define if localtime() takes a long * not a
199                              time_t *.]))
200 AC_LANG_POP(C++)])dnl
201 dnl
202 dnl
203 AC_DEFUN(GROFF_STRUCT_EXCEPTION,
204 [AC_MSG_CHECKING([struct exception])
205 AC_TRY_COMPILE([#include <math.h>],
206 [struct exception e;],
207 AC_MSG_RESULT(yes);AC_DEFINE(HAVE_STRUCT_EXCEPTION, 1,
208                              [Define if <math.h> defines struct exception.]),
209 AC_MSG_RESULT(no))])dnl
210 dnl
211 dnl
212 AC_DEFUN(GROFF_ARRAY_DELETE,
213 [AC_LANG_PUSH(C++)
214 AC_MSG_CHECKING([whether ANSI array delete syntax supported])
215 AC_TRY_COMPILE(, [char *p = new char[5]; delete [] p;],
216 AC_MSG_RESULT(yes),
217 AC_MSG_RESULT(no);AC_DEFINE(ARRAY_DELETE_NEEDS_SIZE, 1,
218                             [Define if your C++ doesn't understand
219                              `delete []'.]))
220 AC_LANG_POP(C++)])dnl
221 dnl
222 dnl
223 dnl
224 AC_DEFUN(GROFF_TRADITIONAL_CPP,
225 [AC_LANG_PUSH(C++)
226 AC_MSG_CHECKING([traditional preprocessor])
227 AC_TRY_COMPILE([#define name2(a,b) a/**/b],[int name2(foo,bar);],
228 AC_MSG_RESULT(yes);AC_DEFINE(TRADITIONAL_CPP, 1,
229                              [Define if your C++ compiler uses a
230                               traditional (Reiser) preprocessor.]),
231 AC_MSG_RESULT(no))
232 AC_LANG_POP(C++)])dnl
233 dnl
234 dnl
235 AC_DEFUN(GROFF_WCOREFLAG,
236 [AC_MSG_CHECKING([w_coredump])
237 AC_TRY_RUN([#include <sys/types.h>
238 #include <sys/wait.h>
239 main()
240 {
241 #ifdef WCOREFLAG
242   exit(1);
243 #else
244   int i = 0;
245   ((union wait *)&i)->w_coredump = 1;
246   exit(i != 0200);
247 #endif
248 }],
249 AC_MSG_RESULT(yes);AC_DEFINE(WCOREFLAG, 0200,
250                              [Define if the 0200 bit of the status returned
251                               by wait() indicates whether a core image was
252                               produced for a process that was terminated by
253                               a signal.]),
254 AC_MSG_RESULT(no),
255 AC_MSG_RESULT(no))])dnl
256 dnl
257 dnl
258 AC_DEFUN(GROFF_BROKEN_SPOOLER_FLAGS,
259 [AC_MSG_CHECKING([default value for grops -b option])
260 test -n "${BROKEN_SPOOLER_FLAGS}" || BROKEN_SPOOLER_FLAGS=7
261 AC_MSG_RESULT($BROKEN_SPOOLER_FLAGS)
262 AC_SUBST(BROKEN_SPOOLER_FLAGS)])dnl
263 dnl
264 dnl
265 AC_DEFUN(GROFF_PAGE,
266 [AC_MSG_CHECKING([default paper size])
267 groff_prefix=$prefix
268 test "x$prefix" = xNONE && groff_prefix=$ac_default_prefix
269 if test -z "$PAGE"; then
270         descfile=
271         if test -r $groff_prefix/share/groff/font/devps/DESC; then
272                 descfile=$groff_prefix/share/groff/font/devps/DESC
273         elif test -r $groff_prefix/lib/groff/font/devps/DESC; then
274                 descfile=$groff_prefix/lib/groff/font/devps/DESC
275         else
276                 for f in $groff_prefix/share/groff/*/font/devps/DESC; do
277                         if test -r $f; then
278                                 descfile=$f
279                                 break
280                         fi
281                 done
282         fi
283         if test -n "$descfile"; then
284 changequote(,)dnl
285                 if grep '^paperlength[   ]\+841890' $descfile
286                   >/dev/null 2>&1; then
287                         PAGE=A4
288                 elif grep '^papersize[   ]\+[aA]4' $descfile \
289                   >/dev/null 2>&1; then
290                         PAGE=A4
291                 fi
292 changequote([,])dnl
293         fi
294 fi
295 if test -z "$PAGE"; then
296         dom=`awk '([$]1 == "dom" || [$]1 == "search") { print [$]2; exit}' \
297             /etc/resolv.conf 2>/dev/null`
298         if test -z "$dom"; then
299                 dom=`(domainname) 2>/dev/null | tr -d '+'`
300                 if test -z "$dom" \
301                   || test "$dom" = '(none)'; then
302                         dom=`(hostname) 2>/dev/null | grep '\.'`
303                 fi
304         fi
305 changequote(,)dnl
306         # If the top-level domain is two letters and it's not `us' or `ca'
307         # then they probably use A4 paper.
308         case "$dom" in
309         *.[Uu][Ss]|*.[Cc][Aa]) ;;
310         *.[A-Za-z][A-Za-z]) PAGE=A4 ;;
311         esac
312 changequote([,])dnl
313 fi
314 test -n "$PAGE" || PAGE=letter
315 if test "x$PAGE" = "xA4"; then
316         AC_DEFINE(PAGEA4, 1,
317                   [Define if the printer's page size is A4.])
318 fi
319 AC_MSG_RESULT($PAGE)
320 AC_SUBST(PAGE)])dnl
321 dnl
322 dnl
323 AC_DEFUN(GROFF_CXX_CHECK,
324 [AC_REQUIRE([AC_PROG_CXX])
325 AC_LANG_PUSH(C++)
326 if test "$cross_compiling" = no; then
327         AC_MSG_CHECKING([that C++ compiler can compile simple program])
328 fi
329 AC_TRY_RUN([int main() { return 0; }],
330 AC_MSG_RESULT(yes),
331 AC_MSG_RESULT(no);AC_MSG_ERROR([a working C++ compiler is required]),
332 :)
333 if test "$cross_compiling" = no; then
334         AC_MSG_CHECKING([that C++ static constructors and destructors are called])
335 fi
336 AC_TRY_RUN([
337 extern "C" {
338   void _exit(int);
339 }
340 int i;
341 struct A {
342   char dummy;
343   A() { i = 1; }
344   ~A() { if (i == 1) _exit(0); }
345 };
346 A a;
347 int main() { return 1; }
348 ],
349 AC_MSG_RESULT(yes),
350 AC_MSG_RESULT(no);AC_MSG_ERROR([a working C++ compiler is required]),
351 :)
352 AC_MSG_CHECKING([that header files support C++])
353 AC_TRY_LINK([#include <stdio.h>],
354 [fopen(0, 0);],
355 AC_MSG_RESULT(yes),
356 AC_MSG_RESULT(no);AC_MSG_ERROR([header files do not support C++ (if you are using a version of gcc/g++ earlier than 2.5, you should install libg++)]))
357 AC_LANG_POP(C++)])dnl
358 dnl
359 dnl
360 AC_DEFUN(GROFF_TMAC,
361 [AC_MSG_CHECKING([for prefix of system macro packages])
362 sys_tmac_prefix=
363 sys_tmac_file_prefix=
364 for d in /usr/share/lib/tmac /usr/lib/tmac; do
365         for t in "" tmac.; do
366                 for m in an s m; do
367                         f=$d/$t$m
368                         if test -z "$sys_tmac_prefix" \
369                           && test -f $f \
370                           && grep '^\.if' $f >/dev/null 2>&1; then
371                                 sys_tmac_prefix=$d/$t
372                                 sys_tmac_file_prefix=$t
373                         fi
374                 done
375         done
376 done
377 AC_MSG_RESULT($sys_tmac_prefix)
378 AC_SUBST(sys_tmac_prefix)
379 tmac_wrap=
380 AC_MSG_CHECKING([which system macro packages should be made available])
381 if test "x$sys_tmac_file_prefix" = "xtmac."; then
382         for f in $sys_tmac_prefix*; do
383                 suff=`echo $f | sed -e "s;$sys_tmac_prefix;;"`
384                 case "$suff" in
385                 e) ;;
386                 *)
387                         grep "Copyright.*Free Software Foundation" $f >/dev/null \
388                           || tmac_wrap="$tmac_wrap $suff" ;;
389                 esac 
390         done
391 elif test -n "$sys_tmac_prefix"; then
392         files=`echo $sys_tmac_prefix*`
393         grep "\\.so" $files >conftest.sol
394         for f in $files; do
395                 case "$f" in
396                 ${sys_tmac_prefix}e) ;;
397                 *.me) ;;
398                 */ms.*) ;;
399                 *)
400                         b=`basename $f`
401                         if grep "\\.so.*/$b\$" conftest.sol >/dev/null \
402                           || grep -l "Copyright.*Free Software Foundation" $f >/dev/null; then
403                                 :
404                         else
405                                 suff=`echo $f | sed -e "s;$sys_tmac_prefix;;"`
406                                 case "$suff" in
407                                 tmac.*) ;;
408                                 *) tmac_wrap="$tmac_wrap $suff" ;;
409                                 esac
410                         fi
411                 esac
412         done
413         rm -f conftest.sol
414 fi
415 AC_MSG_RESULT([$tmac_wrap])
416 AC_SUBST(tmac_wrap)])dnl
417 dnl
418 dnl
419 AC_DEFUN(GROFF_G,
420 [AC_MSG_CHECKING([for existing troff installation])
421 if test "x`(echo .tm '|n(.g' | tr '|' '\\\\' | troff -z -i 2>&1) 2>/dev/null`" = x0; then
422         AC_MSG_RESULT(yes)
423         g=g
424 else
425         AC_MSG_RESULT(no)
426         g=
427 fi
428 AC_SUBST(g)])dnl
429 dnl
430 dnl
431 dnl We need the path to install-sh to be absolute.
432 dnl
433 AC_DEFUN(GROFF_INSTALL_SH,
434 [AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT])dnl
435 ac_dir=`cd $ac_aux_dir; pwd`
436 ac_install_sh="$ac_dir/install-sh -c"])dnl
437 dnl
438 dnl
439 dnl Test whether install-info is available.
440 dnl
441 AC_DEFUN(GROFF_INSTALL_INFO,
442 [AC_CHECK_PROGS(INSTALL_INFO, install-info, :)])dnl
443 dnl
444 dnl
445 dnl At least one UNIX system, Apple Macintosh Rhapsody 5.5,
446 dnl does not have -lm.
447 dnl
448 AC_DEFUN(GROFF_LIBM,
449 [AC_CHECK_LIB(m,sin,LIBM=-lm)
450 AC_SUBST(LIBM)])dnl
451 dnl
452 dnl
453 dnl We need top_srcdir to be absolute.
454 dnl
455 AC_DEFUN(GROFF_SRCDIR,
456 [ac_srcdir_defaulted=no
457 srcdir=`cd $srcdir; pwd`])dnl
458 dnl
459 dnl
460 dnl This simplifies Makefile rules.
461 dnl
462 AC_DEFUN(GROFF_BUILDDIR,
463 [groff_top_builddir=`pwd`
464 AC_SUBST(groff_top_builddir)])dnl
465 dnl
466 dnl
467 dnl Check for EBCDIC - stolen from the OS390 Unix LYNX port
468 dnl
469 AC_DEFUN(GROFF_EBCDIC,
470 [AC_MSG_CHECKING([whether character set is EBCDIC])
471 AC_TRY_COMPILE(,
472 [/* Treat any failure as ASCII for compatibility with existing art.
473     Use compile-time rather than run-time tests for cross-compiler
474     tolerance. */
475 #if '0' != 240
476 make an error "Character set is not EBCDIC"
477 #endif],
478 groff_cv_ebcdic="yes"
479  TTYDEVDIRS="font/devcp1047"
480  AC_MSG_RESULT(yes)
481  AC_DEFINE(IS_EBCDIC_HOST, 1,
482            [Define if the host's encoding is EBCDIC.]),
483 groff_cv_ebcdic="no"
484  TTYDEVDIRS="font/devascii font/devlatin1"
485  OTHERDEVDIRS="font/devlj4 font/devlbp"
486  AC_MSG_RESULT(no))
487 AC_SUBST(TTYDEVDIRS)
488 AC_SUBST(OTHERDEVDIRS)])dnl
489 dnl
490 dnl
491 dnl Check for OS/390 Unix.  We test for EBCDIC also -- the Linux port (with
492 dnl gcc) to OS/390 uses ASCII internally.
493 dnl
494 AC_DEFUN(GROFF_OS390,
495 [if test "$groff_cv_ebcdic" = "yes"; then
496         AC_MSG_CHECKING([for OS/390 Unix])
497         case `uname` in
498         OS/390)
499                 CFLAGS="$CFLAGS -D_ALL_SOURCE"
500                 AC_MSG_RESULT(yes) ;;
501         *)
502                 AC_MSG_RESULT(no) ;;
503         esac
504 fi])dnl
505 dnl
506 dnl
507 dnl Check whether we need a declaration for a function.
508 dnl
509 dnl Stolen from GNU bfd.
510 dnl
511 AC_DEFUN(GROFF_NEED_DECLARATION,
512 [AC_MSG_CHECKING([whether $1 must be declared])
513 AC_LANG_PUSH(C++)
514 AC_CACHE_VAL(groff_cv_decl_needed_$1,
515 [AC_TRY_COMPILE([
516 #include <stdio.h>
517 #ifdef HAVE_STRING_H
518 #include <string.h>
519 #endif
520 #ifdef HAVE_STRINGS_H
521 #include <strings.h>
522 #endif
523 #ifdef HAVE_STDLIB_H
524 #include <stdlib.h>
525 #endif
526 #ifdef HAVE_SYS_TIME_H
527 #include <sys/time.h>
528 #endif
529 #ifdef HAVE_UNISTD_H
530 #include <unistd.h>
531 #endif
532 #ifdef HAVE_MATH_H
533 #include <math.h>
534 #endif],
535 [#ifndef $1
536   char *p = (char *) $1;
537 #endif],
538 groff_cv_decl_needed_$1=no,
539 groff_cv_decl_needed_$1=yes)])
540 AC_MSG_RESULT($groff_cv_decl_needed_$1)
541 if test $groff_cv_decl_needed_$1 = yes; then
542         AC_DEFINE([NEED_DECLARATION_]translit($1, [a-z], [A-Z]), 1,
543                   [Define if your C++ doesn't declare ]$1[().])
544 fi
545 AC_LANG_POP(C++)])dnl
546 dnl
547 dnl
548 dnl If mkstemp() isn't available, use our own mkstemp.cc file.
549 dnl
550 AC_DEFUN(GROFF_MKSTEMP,
551 [AC_MSG_CHECKING([for mkstemp])
552 AC_LANG_PUSH(C++)
553 AC_LIBSOURCE(mkstemp.cc)
554 AC_TRY_LINK([#include <stdlib.h>
555 #include <unistd.h>
556 int (*f) (char *);],
557 [f = mkstemp;],
558 AC_MSG_RESULT(yes);AC_DEFINE(HAVE_MKSTEMP, 1,
559                              [Define if you have mkstemp().]),
560 AC_MSG_RESULT(no);_AC_LIBOBJ(mkstemp))
561 AC_LANG_POP(C++)])dnl
562 dnl
563 dnl
564 dnl Test whether <inttypes.h> exists, doesn't clash with <sys/types.h>,
565 dnl and declares uintmax_t.  Taken from the fileutils package.
566 dnl
567 AC_DEFUN(GROFF_INTTYPES_H,
568 [AC_LANG_PUSH(C++)
569 AC_MSG_CHECKING([for inttypes.h])
570 AC_TRY_COMPILE([#include <sys/types.h>
571 #include <inttypes.h>],
572 [uintmax_t i = (uintmax_t)-1;],
573 groff_cv_header_inttypes_h=yes,
574 groff_cv_header_inttypes_h=no)
575 AC_MSG_RESULT($groff_cv_header_inttypes_h)
576 AC_LANG_POP(C++)])dnl
577 dnl
578 dnl
579 dnl Test for working `unsigned long long'.  Taken from the fileutils package.
580 dnl
581 AC_DEFUN(GROFF_UNSIGNED_LONG_LONG,
582 [AC_LANG_PUSH(C++)
583 AC_MSG_CHECKING([for unsigned long long])
584 AC_TRY_LINK([unsigned long long ull = 1; int i = 63;],
585 [unsigned long long ullmax = (unsigned long long)-1;
586 return ull << i | ull >> i | ullmax / ull | ullmax % ull;],
587 groff_cv_type_unsigned_long_long=yes,
588 groff_cv_type_unsigned_long_long=no)
589 AC_MSG_RESULT($groff_cv_type_unsigned_long_long)
590 AC_LANG_POP(C++)])dnl
591 dnl
592 dnl
593 dnl Define uintmax_t to `unsigned long' or `unsigned long long'
594 dnl if <inttypes.h> does not exist.  Taken from the fileutils package.
595 dnl
596 AC_DEFUN(GROFF_UINTMAX_T,
597 [AC_REQUIRE([GROFF_INTTYPES_H])
598 if test $groff_cv_header_inttypes_h = no; then
599         AC_REQUIRE([GROFF_UNSIGNED_LONG_LONG])
600         test $groff_cv_type_unsigned_long_long = yes \
601           && ac_type='unsigned long long' \
602           || ac_type='unsigned long'
603         AC_DEFINE_UNQUOTED(uintmax_t, $ac_type,
604                            [Define uintmax_t to `unsigned long' or
605                             `unsigned long long' if <inttypes.h> does not
606                             exist.])
607 fi])dnl