[project @ 2003-08-18 16:34:05 by panne]
[ghc-hetmet.git] / aclocal.m4
1 # Extra autoconf macros for the Glasgow fptools
2 #
3 # To be a good autoconf citizen, names of local macros have prefixed with FP_ to
4 # ensure we don't clash with any pre-supplied autoconf ones.
5
6
7 # FP_ALTZONE
8 # -------------------
9 # Defines HAVE_DECL_ALTZONE to 1 if declared, 0 otherwise.
10 # Used by base package.
11 AC_DEFUN([FP_ALTZONE],
12 [AC_REQUIRE([AC_HEADER_TIME])dnl
13 AC_CHECK_HEADERS([sys/time.h])
14 AC_CHECK_DECLS([altzone], [], [],[#if TIME_WITH_SYS_TIME
15 # include <sys/time.h>
16 # include <time.h>
17 #else
18 # if HAVE_SYS_TIME_H
19 #  include <sys/time.h>
20 # else
21 #  include <time.h>
22 # endif
23 #endif])
24 ])# FP_ALTZONE
25
26
27 # FP_COMPUTE_INT(EXPRESSION, VARIABLE, INCLUDES, IF-FAILS)
28 # ---------------------------------------------------------
29 # Assign VARIABLE the value of the compile-time EXPRESSION using INCLUDES for
30 # compilation. Execute IF-FAILS when unable to determine the value. Works for
31 # cross-compilation, too.
32 # Note: We are lazy and use an internal autoconf macro, but it is supported in
33 # autoconf versions 2.50 up to the actual 2.57, so there is little risk.
34 AC_DEFUN([FP_COMPUTE_INT],
35 [_AC_COMPUTE_INT([$1], [$2], [$3], [$4])[]dnl
36 ])# FP_COMPUTE_INT
37
38
39 # FP_CHECK_ALIGNMENT(TYPE, [IGNORED], [INCLUDES = DEFAULT-INCLUDES])
40 # ------------------------------------------------------------------
41 # A variation of AC_CHECK_SIZEOF for computing the alignment restrictions of a
42 # given type. Defines ALIGNMENT_TYPE.
43 AC_DEFUN([FP_CHECK_ALIGNMENT],
44 [AS_LITERAL_IF([$1], [],
45                [AC_FATAL([$0: requires literal arguments])])dnl
46 AC_CHECK_TYPE([$1], [], [], [$3])
47 AC_CACHE_CHECK([alignment of $1], AS_TR_SH([fp_cv_alignment_$1]),
48 [if test "$AS_TR_SH([ac_cv_type_$1])" = yes; then
49   FP_COMPUTE_INT([(long) (&((struct { char c; $1 ty; } *)0)->ty)],
50                  [AS_TR_SH([fp_cv_alignment_$1])],
51                  [AC_INCLUDES_DEFAULT([$3])],
52                  [AC_MSG_FAILURE([cannot compute alignment ($1), 77])])
53 else
54   AS_TR_SH([fp_cv_alignment_$1])=0
55 fi])dnl
56 AC_DEFINE_UNQUOTED(AS_TR_CPP(alignment_$1), $AS_TR_SH([fp_cv_alignment_$1]),
57                    [The alignment of a `$1'.])
58 ])# FP_CHECK_ALIGNMENT
59
60
61 dnl ** check for leading underscores in symbol names
62 dnl 
63 dnl Test for determining whether symbol names have a leading
64 dnl underscore.
65 dnl 
66 dnl We assume that they _haven't_ if anything goes wrong.
67 dnl
68 dnl Some nlist implementations seem to try to be compatible by ignoring
69 dnl a leading underscore sometimes (eg. FreeBSD).  We therefore have
70 dnl to work around this by checking for *no* leading underscore first.
71 dnl Sigh.  --SDM
72 dnl
73 dnl Similarly on OpenBSD, but this test doesn't help. -- dons
74 dnl
75 AC_DEFUN(FPTOOLS_UNDERSCORE,
76 [AC_CHECK_LIB(elf, nlist, LIBS="-lelf $LIBS")dnl
77 AC_CACHE_CHECK([leading underscore in symbol names], fptools_cv_lead_uscore,
78
79 dnl
80 dnl Hack!: nlist() under Digital UNIX insist on there being an _,
81 dnl but symbol table listings shows none. What is going on here?!?
82 dnl
83 dnl Another hack: cygwin doesn't come with nlist.h , so we hardwire
84 dnl the underscoredness of that "platform"
85 changequote(<<, >>)dnl
86 <<
87 case $HostPlatform in
88 *openbsd*) # x86 openbsd is ELF from 3.4 >, meaning no leading uscore
89     case $build in
90         i386-*2\.[[0-9]] | i386-*3\.[[0-3]] ) fptools_cv_lead_uscore='yes' ;;
91         *)      fptools_cv_lead_uscore='no' ;;
92     esac ;;
93 alpha-dec-osf*) fptools_cv_lead_uscore='no';;
94 *cygwin32) fptools_cv_lead_uscore='yes';;
95 *mingw32) fptools_cv_lead_uscore='yes';;
96 *) >>
97 changequote([, ])dnl
98 AC_TRY_RUN([#ifdef HAVE_NLIST_H
99 #include <nlist.h>
100 changequote(<<, >>)dnl
101 <<
102 struct nlist xYzzY1[] = {{"xYzzY1", 0},{0}};
103 struct nlist xYzzY2[] = {{"_xYzzY2", 0},{0}};
104 #endif
105
106 main(argc, argv)
107 int argc;
108 char **argv;
109 {
110 #ifdef HAVE_NLIST_H
111     if(nlist(argv[0], xYzzY1) == 0 && xYzzY1[0].n_value != 0)
112         exit(1);
113     if(nlist(argv[0], xYzzY2) == 0 && xYzzY2[0].n_value != 0)
114         exit(0);>>
115 changequote([, ])dnl
116 #endif
117     exit(1);
118 }], fptools_cv_lead_uscore=yes, fptools_cv_lead_uscore=no, fptools_cv_lead_uscore=NO)
119 ;;
120 esac);
121 LeadingUnderscore=`echo $fptools_cv_lead_uscore | sed 'y/yesno/YESNO/'`
122 AC_SUBST(LeadingUnderscore)
123 case $LeadingUnderscore in
124 YES) AC_DEFINE(LEADING_UNDERSCORE);;
125 esac
126 ])
127
128 dnl
129 dnl FPTOOLS_PROG_CHECK_VERSION(VERSIONSTR1, TEST, VERSIONSTR2,
130 dnl                            ACTION-IF-TRUE [, ACTION-IF-FALSE])
131 dnl
132 dnl compare versions field-wise (separator is '.')
133 dnl TEST is one of {-lt,-le,-eq,-ge,-gt}
134 dnl
135 dnl quite shell-independant and SUSv2 compliant code
136 dnl
137 dnl NOTE: the loop could be unrolled within autoconf, but the
138 dnl       macro code would be a) longer and b) harder to debug... ;)
139 dnl
140 AC_DEFUN(FPTOOLS_PROG_CHECK_VERSION,
141 [if ( IFS=".";
142       a="[$1]";  b="[$3]";
143       while test -n "$a$b"
144       do
145               set -- [$]a;  h1="[$]1";  shift 2>/dev/null;  a="[$]*"
146               set -- [$]b;  h2="[$]1";  shift 2>/dev/null;  b="[$]*"
147               test -n "[$]h1" || h1=0;  test -n "[$]h2" || h2=0
148               test [$]{h1} -eq [$]{h2} || break
149       done
150       test [$]{h1} [$2] [$]{h2}
151     )
152 then ifelse([$4],,[:],[
153   $4])
154 ifelse([$5],,,
155 [else
156   $5])
157 fi
158 ])])dnl
159
160
161 dnl
162 dnl Check for Greencard and version.
163 dnl
164 AC_DEFUN(FPTOOLS_GREENCARD,
165 [
166 AC_PATH_PROG(GreencardCmd,greencard)
167 AC_CACHE_CHECK([for version of greencard], fptools_cv_greencard_version,
168 changequote(, )dnl
169 [if test x"$GreencardCmd" != x; then
170    fptools_cv_greencard_version="`$GreencardCmd --version |
171                           grep 'version' | sed -e 's/greencard. version \([^ ]*\).*/\1/g'`"
172 else
173    fptools_cv_greencard_version=""
174 fi
175 changequote([, ])dnl
176 ])
177 FPTOOLS_PROG_CHECK_VERSION([$fptools_cv_greencard_version],-lt,$1,
178   [AC_MSG_ERROR([greencard version $1 or later is required (found '$fptools_cv_greencard_version')])])dnl
179 GreencardVersion=$fptools_cv_greencard_version
180 AC_SUBST(GreencardVersion)
181 ])
182
183 dnl
184 dnl Check for Happy and version.  If we're building GHC, then we need
185 dnl at least Happy version 1.13.  If there's no installed Happy, we look
186 dnl for a happy source tree and point the build system at that instead.
187 dnl
188 AC_DEFUN(FPTOOLS_HAPPY,
189 [
190 if test -d $srcdir/happy; then
191    SrcTreeHappyCmd=$hardtop/happy/src/happy-inplace
192 fi
193 if test x"$UseSrcTreeHappy" = xYES; then
194   HappyCmd=$SrcTreeHappyCmd
195 else
196   AC_PATH_PROG(HappyCmd,happy,$SrcTreeHappyCmd)
197 fi
198 AC_CACHE_CHECK([for version of happy], fptools_cv_happy_version,
199 changequote(, )dnl
200 [if test x"$HappyCmd" = x"$SrcTreeHappyCmd"; then
201    fptools_cv_happy_version=`grep '^ProjectVersion[     ]*=' $srcdir/happy/mk/version.mk | sed 's/.*\([0-9][0-9]*\.[0-9][0-9]*\).*/\1/g'`;
202 elif test x"$HappyCmd" != x; then
203    fptools_cv_happy_version="`$HappyCmd -v |
204                           grep 'Happy Version' | sed -e 's/Happy Version \([^ ]*\).*/\1/g'`" ;
205 else
206    fptools_cv_happy_version="";
207 fi;
208 changequote([, ])dnl
209 ])
210 if test -d $srcdir/ghc -a ! -f $srcdir/ghc/compiler/parser/Parser.hs; then
211   FPTOOLS_PROG_CHECK_VERSION([$fptools_cv_happy_version],-lt,[1.13],
212   [AC_MSG_ERROR([Happy version 1.13 or later is required to compile GHC.])])dnl
213 fi
214 HappyVersion=$fptools_cv_happy_version;
215 AC_SUBST(HappyVersion)
216 ])
217
218 dnl
219 dnl Check for Haddock and version.  If there's no installed Haddock, we look
220 dnl for a haddock source tree and point the build system at that instead.
221 dnl
222 AC_DEFUN(FPTOOLS_HADDOCK,
223 [
224 if test -d $srcdir/haddock; then
225    SrcTreeHaddockCmd=$hardtop/haddock/src/haddock-inplace
226 fi
227 if test x"$UseSrcTreeHaddock" = xYES; then
228   HaddockCmd=$SrcTreeHaddockCmd
229 else
230   AC_PATH_PROG(HaddockCmd,haddock,$SrcTreeHaddockCmd)
231 fi
232 dnl Darn, I forgot to make Haddock print out its version number when
233 dnl invoked with -v.  We could try generating some HTML and grepping
234 dnl through that to find the version number, but I think we'll make
235 dnl do without it for now.
236 ])
237
238 dnl
239 dnl Check for Alex and version.  If we're building GHC, then we need
240 dnl at least Alex version 2.0.  If there's no installed Alex, we look
241 dnl for a alex source tree and point the build system at that instead.
242 dnl
243 AC_DEFUN(FPTOOLS_ALEX,
244 [
245 if test -d $srcdir/alex; then
246    SrcTreeAlexCmd=$hardtop/alex/src/alex-inplace
247 fi
248 if test x"$UseSrcTreeAlex" = xYES; then
249   AlexCmd=$SrcTreeAlexCmd
250 else
251   AC_PATH_PROG(AlexCmd,alex,$SrcTreeAlexCmd)
252 fi
253 AC_CACHE_CHECK([for version of alex], fptools_cv_alex_version,
254 changequote(, )dnl
255 [if test x"$AlexCmd" = x"$SrcTreeAlexCmd"; then
256    fptools_cv_alex_version=`grep '^ProjectVersion[      ]*=' $srcdir/alex/mk/version.mk | sed 's/.*\([0-9][0-9]*\.[0-9][0-9]*\).*/\1/g'`;
257 elif test x"$AlexCmd" != x; then
258    fptools_cv_alex_version="`$AlexCmd -v |
259                           grep 'Alex [Vv]ersion' | sed -e 's/Alex [Vv]ersion \([0-9\.]*\).*/\1/g'`" ;
260 else
261    fptools_cv_alex_version="";
262 fi;
263 changequote([, ])dnl
264 ])
265 dnl if test -d $srcdir/ghc -a ! -f $srcdir/ghc/compiler/parser/Lexer.hs; then
266 dnl   FPTOOLS_PROG_CHECK_VERSION([$fptools_cv_alex_version],-lt,[2.0],
267 dnl   [AC_MSG_ERROR([Alex version 2.0 or later is required to compile GHC.])])dnl
268 dnl fi
269 AlexVersion=$fptools_cv_alex_version;
270 AC_SUBST(AlexVersion)
271 ])
272
273 dnl
274 dnl What's the best way of doing context diffs?
275 dnl
276 dnl (NB: NeXTStep thinks diff'ing a file against itself is "trouble")
277 dnl
278 AC_DEFUN(FPTOOLS_PROG_DIFF,
279 [AC_CACHE_CHECK([for ok way to do context diffs], fptools_cv_context_diffs,
280 [echo foo > conftest1
281 echo foo > conftest2
282 if diff -C 1 conftest1 conftest2 > /dev/null 2>&1 ; then
283     fptools_cv_context_diffs='diff -C 1'
284 else
285     if diff -c1 conftest1 conftest2 > /dev/null 2>&1 ; then
286         fptools_cv_context_diffs='diff -c1'
287     else
288         echo "Can't figure out how to do context diffs."
289         echo "Neither \`diff -C 1' nor \`diff -c1' works."
290         exit 1
291     fi
292 fi
293 rm -f conftest1 conftest2
294 ])
295 ContextDiffCmd=$fptools_cv_context_diffs
296 AC_SUBST(ContextDiffCmd)
297 ])
298
299 dnl
300 dnl Check whether ld supports -x
301 dnl
302 AC_DEFUN(FPTOOLS_LD_X,
303 [AC_CACHE_CHECK([whether ld understands -x], fptools_cv_ld_x,
304 [
305 echo 'foo() {}' > conftest.c
306 ${CC-cc} -c conftest.c
307 if ${LdCmd} -r -x -o foo.o conftest.o; then
308    fptools_cv_ld_x=yes
309 else
310    fptools_cv_ld_x=no
311 fi
312 rm -rf conftest.c conftest.o foo.o
313 ])
314 if test "$fptools_cv_ld_x" = yes; then
315         LdXFlag=-x
316 else
317         LdXFlag=
318 fi
319 AC_SUBST(LdXFlag)
320 ])
321
322
323 dnl *** Checking for ar and its arguments + whether we need ranlib.
324 dnl
325 dnl ArCmd, ArSupportsInput and RANLIB are AC_SUBST'ed
326 dnl On Digital UNIX, we test for the -Z (compress) and
327 dnl -input (take list of files from external file) flags.
328 dnl 
329 AC_DEFUN(FPTOOLS_PROG_AR_AND_RANLIB,
330 [AC_PATH_PROG(ArCmdRaw,ar)
331 if test -z "$ArCmdRaw"; then
332     echo "You don't seem to have ar in your PATH...I have no idea how to make a library"
333     exit 1;
334 fi
335 dnl GNU ar needs special treatment: it appears to have problems with
336 dnl object files with the same name if you use the 's' modifier, but
337 dnl simple 'ar q' works fine, and doesn't need a separate ranlib.
338 if $ArCmdRaw --version | grep 'GNU' >/dev/null 2>/dev/null; then
339     ArCmdArgs='q'
340     NeedRanLib=''
341 elif $ArCmdRaw clqsZ conftest.a >/dev/null 2>/dev/null; then
342     ArCmdArgs="clqsZ"
343     NeedRanLib=''
344 elif $ArCmdRaw clqs conftest.a >/dev/null 2>/dev/null; then
345     ArCmdArgs="clqs"
346     NeedRanLib=''
347 elif $ArCmdRaw cqs conftest.a >/dev/null 2>/dev/null; then
348     ArCmdArgs="cqs"
349     NeedRanLib=''
350 elif $ArCmdRaw clq conftest.a >/dev/null 2>/dev/null; then
351     ArCmdArgs="clq"
352     NeedRanLib='YES'
353 elif $ArCmdRaw cq conftest.a >/dev/null 2>/dev/null; then
354     ArCmdArgs="cq"
355     NeedRanLib='YES'
356 elif $ArCmdRaw cq conftest.a 2>&1 | grep 'no archive members specified' >/dev/null 2>/dev/null; then
357     ArCmdArgs="cq"
358     NeedRanLib='YES'
359 else
360     echo "I can't figure out how to use your $ArCmd"
361     exit 1
362 fi
363 rm -rf conftest*
364 case $HostPlatform in
365  *mingw32) 
366           ArCmd="`cygpath -w ${ArCmdRaw} | sed -e 's@\\\\@/@g' ` ${ArCmdArgs}"
367           ;;
368  *) ArCmd="${ArCmdRaw} ${ArCmdArgs}"
369     ;;
370 esac
371 test -n "$ArCmd" && test -n "$verbose" && echo "        setting ArCmd to $ArCmd"
372 AC_SUBST(ArCmd)
373 if $ArCmd conftest.a -input /dev/null >/dev/null 2>/dev/null; then
374     ArSupportsInput='-input'
375 else
376     ArSupportsInput=''
377 fi
378 rm -rf conftest*
379 test -n "$ArSupportsInput" && test -n "$verbose" && echo "        setting ArSupportsInput to $ArSupportsInput"
380 AC_SUBST(ArSupportsInput)
381 if test -z "$NeedRanLib"; then
382     RANLIB=':'
383     test -n "$verbose" && echo "        setting RANLIB to $RANLIB"
384     AC_SUBST(RANLIB)
385 else
386     AC_PROG_RANLIB
387 fi
388 ])
389
390 dnl
391 dnl AC_SHEBANG_PERL - can we she-bang perl?
392 dnl
393 AC_DEFUN(FPTOOLS_SHEBANG_PERL,
394 [AC_CACHE_CHECK([if your perl works in shell scripts], fptools_cv_shebang_perl,
395 [echo "#!$PerlCmd"'
396 exit $1;
397 ' > conftest
398 chmod u+x conftest
399 (SHELL=/bin/sh; export SHELL; ./conftest 69 > /dev/null)
400 if test $? -ne 69; then
401    fptools_cv_shebang_perl=yes
402 else
403    fptools_cv_shebang_perl=no
404 fi
405 rm -f conftest
406 ])])
407
408 dnl
409 dnl Extra testing of the result AC_PROG_CC, testing the gcc version no.
410 dnl *Must* be called after AC_PROG_CC
411 dnl
412 AC_DEFUN(FPTOOLS_HAVE_GCC,
413 [AC_CACHE_CHECK([whether you have an ok gcc], fptools_cv_have_gcc,
414 [if test -z "$GCC"; then
415     echo ''
416     echo "You would be better off with gcc"
417     echo "Perhaps it is already installed, but not in your PATH?"
418     fptools_cv_have_gcc='no'
419 else
420 changequote(, )dnl
421     gcc_version_str="`$CC -v 2>&1 | grep 'version ' | sed -e 's/.*version [^0-9]*\([0-9][0-9]*\)\.\([0-9][0-9]*\).*/\1\.\2/g' `"
422 changequote([, ])dnl
423     fptools_cv_have_gcc='yes'
424     FPTOOLS_PROG_CHECK_VERSION($gcc_version_str, -lt, "2.0",
425         fptools_cv_have_gcc='no'
426         echo ""
427         echo "your gcc version appears to be ..."
428         $CC --version
429         echo "gcc prior to 2.0 and have never worked with ghc."
430         echo "we recommend 2.95.3, although versions back to 2.7.2 should be ok."
431         AC_MSG_ERROR([gcc 1.X has never been supported])
432     )
433 fi
434 ])
435 HaveGcc=`echo $fptools_cv_have_gcc | sed 'y/yesno/YESNO/'`
436 AC_SUBST(HaveGcc)
437 ])
438
439 dnl
440 dnl Some OSs (Mandrake Linux, in particular) configure GCC with
441 dnl -momit-leaf-frame-pointer on by default.  If this is the case, we
442 dnl need to turn it off for mangling to work.  The test is currently a bit
443 dnl crude, using only the version number of gcc.
444 dnl
445 AC_DEFUN(FPTOOLS_GCC_NEEDS_NO_OMIT_LFPTR,
446 [AC_CACHE_CHECK([whether gcc needs -mno-omit-leaf-frame-pointer], fptools_cv_gcc_needs_no_omit_lfptr,
447 [
448  fptools_cv_gcc_needs_no_omit_lfptr='no'
449  FPTOOLS_PROG_CHECK_VERSION($gcc_version_str, -ge, "3.2",
450      fptools_cv_gcc_needs_no_omit_lfptr='yes')
451 ])
452 if test "$fptools_cv_gcc_needs_no_omit_lfptr" = "yes"; then
453    AC_DEFINE(HAVE_GCC_MNO_OMIT_LFPTR)
454 fi
455 ])
456
457 dnl Small feature test for perl version. Assumes PerlCmd
458 dnl contains path to perl binary
459 dnl
460 AC_DEFUN(FPTOOLS_CHECK_PERL_VERSION,
461 [$PerlCmd -v >conftest.out 2>&1
462 if grep "version 5" conftest.out >/dev/null 2>&1; then
463    :
464 else
465    if grep "v5.6" conftest.out >/dev/null 2>&1; then
466       :
467    else
468       if grep "v5.8" conftest.out >/dev/null 2>&1; then
469          :
470       else
471          if grep "version 6" conftest.out >/dev/null 2>&1; then
472             :
473          else
474             echo "Your version of perl probably won't work."
475          fi  
476       fi
477    fi
478 fi
479 rm -fr conftest*
480 ])
481
482 dnl
483 dnl Getting at the right version of 'find'
484 dnl (i.e., not the MS util on a Win32 box).
485 dnl
486 AC_DEFUN(FPTOOLS_FIND_FIND,
487 [
488 AC_PATH_PROG(Find2Cmd, find)
489 $Find2Cmd --version > conftest.out 2>&1 
490 if grep "FIND: Parameter format" conftest.out >/dev/null 2>&1 ; then
491    # Encountered MS' find utility, which is not what we're after.
492    #
493    # HACK - AC_CHECK_PROG is useful here in that does let you reject
494    # an (absolute) entry in the path (Find2Cmd). It is not so useful
495    # in that it doesn't let you (AFAIU) set VARIABLE equal to the 
496    # absolute path eventually found. So, hack around this by inspecting
497    # what variables hold the abs. path & use them directly.
498    AC_CHECK_PROG(FindCmd,find,`echo $ac_dir/$ac_word`,find,,$Find2Cmd)
499 else
500 FindCmd=$Find2Cmd
501 AC_SUBST(FindCmd)
502 fi
503 ])
504
505 dnl
506 dnl FPTOOLS_NOCACHE_CHECK prints a message, then sets the
507 dnl values of the second argument to the result of running
508 dnl the commands given by the third. It does not cache its
509 dnl result, so it is suitable for checks which should be
510 dnl run every time.
511 dnl
512 AC_DEFUN(FPTOOLS_NOCACHE_CHECK,
513 [AC_MSG_CHECKING([$1])
514  $3
515  AC_MSG_RESULT([$][$2])
516 ])
517
518 dnl
519 dnl FPTOOLS_GHC_VERSION(version)
520 dnl FPTOOLS_GHC_VERSION(major, minor [, patchlevel])
521 dnl FPTOOLS_GHC_VERSION(version, major, minor, patchlevel)
522 dnl
523 dnl Test for version of installed ghc.  Uses $GHC.
524 dnl [original version pinched from c2hs]
525 dnl
526 AC_DEFUN(FPTOOLS_GHC_VERSION,
527 [FPTOOLS_NOCACHE_CHECK([version of ghc], [fptools_version_of_ghc],
528 ["${WithGhc-ghc}" --version > conftestghc 2>&1
529   cat conftestghc >&AC_FD_CC
530 #Useless Use Of cat award...
531   fptools_version_of_ghc=`cat conftestghc | sed -n -e 's/, patchlevel *\([[0-9]]\)/.\1/;s/.* version \([[0-9]][[0-9.]]*\).*/\1/p'`
532   rm -fr conftest*
533   if test "[$]fptools_version_of_ghc" = ""
534   then
535     fptools_version_of_ghc='unknown'
536   fi
537 fptools_version_of_ghc[_major]=`echo [$]fptools_version_of_ghc | sed -e 's/^\([[0-9]]\).*/\1/'`
538 fptools_version_of_ghc[_minor]=`echo [$]fptools_version_of_ghc | sed -e 's/^[[0-9]]\.\([[0-9]]*\).*/\1/'`
539 fptools_version_of_ghc[_pl]=`echo [$]fptools_version_of_ghc | sed -n -e 's/^[[0-9]]\.[[0-9]]*\.\([[0-9]]*\)/\1/p'`
540 #
541 if test "[$]fptools_version_of_ghc[_pl]" = ""
542 then
543   fptools_version_of_ghc[_all]="[$]fptools_version_of_ghc[_major].[$]fptools_version_of_ghc[_minor]"
544   fptools_version_of_ghc[_pl]="0"
545 else
546   fptools_version_of_ghc[_all]="[$]fptools_version_of_ghc[_major].[$]fptools_version_of_ghc[_minor].[$]fptools_version_of_ghc[_pl]"
547 fi
548 #
549 ifelse($#, [1], [dnl
550 [$1]="[$]fptools_version_of_ghc[_all]"
551 ], $#, [2], [dnl
552 [$1]="[$]fptools_version_of_ghc[_major]"
553 [$2]="[$]fptools_version_of_ghc[_minor]"
554 ], $#, [3], [dnl
555 [$1]="[$]fptools_version_of_ghc[_major]"
556 [$2]="[$]fptools_version_of_ghc[_minor]"
557 [$3]="[$]fptools_version_of_ghc[_pl]"
558 ], $#, [4], [dnl
559 [$1]="[$]fptools_version_of_ghc[_all]"
560 [$2]="[$]fptools_version_of_ghc[_major]"
561 [$3]="[$]fptools_version_of_ghc[_minor]"
562 [$4]="[$]fptools_version_of_ghc[_pl]"
563 ])
564 ])
565 ])dnl
566
567
568 dnl ** Map an arithmetic C type to a Haskell type.
569 dnl    Based on autconf's AC_CHECK_SIZEOF.
570
571 dnl FPTOOLS_CHECK_HTYPE(TYPE [, DEFAULT_VALUE, [, VALUE-FOR-CROSS-COMPILATION])
572 AC_DEFUN(FPTOOLS_CHECK_HTYPE,
573 [changequote(<<, >>)dnl
574 dnl The name to #define.
575 define(<<AC_TYPE_NAME>>, translit(htype_$1, [a-z *], [A-Z_P]))dnl
576 dnl The cache variable name.
577 define(<<AC_CV_NAME>>, translit(fptools_cv_htype_$1, [ *], [_p]))dnl
578 changequote([, ])dnl
579 AC_MSG_CHECKING(Haskell type for $1)
580 AC_CACHE_VAL(AC_CV_NAME,
581 [AC_TRY_RUN([#include <stdio.h>
582 #include <stddef.h>
583
584 #ifdef HAVE_SYS_TYPES_H
585 # include <sys/types.h>
586 #endif
587
588 #ifdef HAVE_UNISTD_H
589 # include <unistd.h>
590 #endif
591
592 #ifdef HAVE_SYS_STAT_H
593 # include <sys/stat.h>
594 #endif
595
596 #ifdef HAVE_FCNTL_H
597 # include <fcntl.h>
598 #endif
599
600 #ifdef HAVE_SIGNAL_H
601 # include <signal.h>
602 #endif
603
604 #ifdef HAVE_TIME_H
605 # include <time.h>
606 #endif
607
608 #ifdef HAVE_TERMIOS_H
609 # include <termios.h>
610 #endif
611
612 #ifdef HAVE_STRING_H
613 # include <string.h>
614 #endif
615
616 #ifdef HAVE_CTYPE_H
617 # include <ctype.h>
618 #endif
619
620 #ifdef HAVE_GL_GL_H
621 # include <GL/gl.h>
622 #endif
623
624 #ifdef HAVE_OPENGL_GL_H
625 # include <OpenGL/gl.h>
626 #endif
627
628 #ifdef HAVE_SYS_RESOURCE_H
629 # include <sys/resource.h>
630 #endif
631
632 typedef $1 testing;
633
634 main() {
635   FILE *f=fopen("conftestval", "w");
636   if (!f) exit(1);
637   if (((testing)((int)((testing)1.4))) == ((testing)1.4)) {
638     fprintf(f, "%s%d\n",
639            ((testing)(-1) < (testing)0) ? "Int" : "Word",
640            sizeof(testing)*8);
641   } else {
642     fprintf(f,"%s\n",
643            (sizeof(testing) >  sizeof(double)) ? "LDouble" :
644            (sizeof(testing) == sizeof(double)) ? "Double"  : "Float");
645   }
646   fclose(f);
647   exit(0);
648 }], AC_CV_NAME=`cat conftestval`,
649 ifelse([$2], , AC_CV_NAME=NotReallyAType,      AC_CV_NAME=$2),
650 ifelse([$3], , AC_CV_NAME=NotReallyATypeCross, AC_CV_NAME=$3))]) dnl
651 AC_MSG_RESULT($AC_CV_NAME)
652 AC_DEFINE_UNQUOTED(AC_TYPE_NAME, $AC_CV_NAME)
653 undefine([AC_TYPE_NAME])dnl
654 undefine([AC_CV_NAME])dnl
655 ])
656
657
658 dnl ** Obtain the value of a C constant.
659 dnl    The value will be `(-1)' if the constant is undefined.
660 dnl
661 dnl    This is set up so that the argument can be a shell variable.
662 dnl
663 AC_DEFUN(FPTOOLS_CHECK_CCONST,
664 [
665 eval "cv_name=ac_cv_cconst_$1"
666 AC_MSG_CHECKING(value of $1)
667 AC_CACHE_VAL($cv_name,
668 [AC_TRY_RUN([#include <stdio.h>
669 #include <errno.h>
670 main()
671 {
672   FILE *f=fopen("conftestval", "w");
673   if (!f) exit(1);
674   fprintf(f, "%d\n", $1);
675   exit(0);
676 }], 
677 eval "$cv_name=`cat conftestval`",
678 eval "$cv_name=-1",
679 eval "$cv_name=-1")])dnl
680 eval "fptools_check_cconst_result=`echo '$'{$cv_name}`"
681 AC_MSG_RESULT($fptools_check_cconst_result)
682 AC_DEFINE_UNQUOTED(CCONST_$1, $fptools_check_cconst_result)
683 unset fptools_check_cconst_result
684 ])
685
686 dnl ** Invoke AC_CHECK_CCONST on each argument (which have to separate with 
687 dnl    spaces)
688 dnl
689 AC_DEFUN(FPTOOLS_CHECK_CCONSTS,
690 [for ac_const_name in $1
691 do
692 FPTOOLS_CHECK_CCONST($ac_const_name)dnl
693 done
694 ])
695
696
697 dnl *** Can we open files in binary mode? ***
698 dnl 
699 AC_DEFUN(FPTOOLS_O_BINARY,
700 [
701 AC_REQUIRE([AC_PROG_CC])
702 AC_MSG_CHECKING(whether we can open files in binary mode)
703 AC_CACHE_VAL(fptools_cv_have_o_binary,
704 [
705 AC_LANG_SAVE
706 AC_LANG_C
707 AC_TRY_COMPILE(
708 [#ifdef HAVE_FCNTL_H
709 #include <fcntl.h>
710 #endif],
711 [int x = O_BINARY;],
712 fptools_cv_have_o_binary=yes,
713 fptools_cv_have_o_binary=no)
714 AC_LANG_RESTORE
715 ])
716 AC_MSG_RESULT($fptools_cv_have_o_binary)
717 if test "$fptools_cv_have_o_binary" = yes; then
718 AC_DEFINE(HAVE_O_BINARY)
719 fi
720 ])
721
722
723 dnl Based on AC_TRY_LINK - run iftrue if links cleanly with no warning
724
725 dnl FPTOOLS_TRY_LINK_NOWARN(flags,main?,iftrue,iffalse)
726
727 AC_DEFUN(FPTOOLS_TRY_LINK_NOWARN,
728 [
729 ac_save_LIBS="$LIBS"
730 LIBS=[$1];
731 cat > conftest.$ac_ext <<EOF
732 dnl This sometimes fails to find confdefs.h, for some reason.
733 dnl [#]line __oline__ "[$]0"
734 [#]line __oline__ "configure"
735 #include "confdefs.h"
736 [$2]
737 int t() { return 0; }
738 EOF
739 if AC_TRY_EVAL(ac_link); then
740   ifelse([$3], , :, [
741     LIBS="$ac_save_LIBS"
742     rm -rf conftest*
743     $3])
744   ifelse([$4], , , [else
745     LIBS="$ac_save_LIBS"
746     rm -rf conftest*
747     $4
748 ])dnl
749 fi
750 rm -f conftest*
751 ]
752 )
753
754 dnl Loosely based on AC_CHECK_LIB in acgeneral.m4 in autoconf distribution
755
756 dnl FPTOOLS_CHECK_FLAG_NOWARN(NAME, FLAG, CODE, iftrue, iffalse)
757
758 AC_DEFUN(FPTOOLS_CHECK_FLAG_NOWARN,
759 [AC_MSG_CHECKING([for $1])
760  AC_CACHE_VAL(ac_cv_flag_$1,
761    [FPTOOLS_TRY_LINK_NOWARN("$2", [main() { $3; exit(0); } ],
762      eval "ac_cv_flag_$1=yes",
763      eval "ac_cv_flag_$1=no"
764    )]
765  )
766 if eval "test \"`echo '$ac_cv_flag_'$1`\" = yes"; then
767   AC_MSG_RESULT(yes)
768   LIBS="$2 $LIBS"
769   $4
770 else
771   AC_MSG_RESULT(no)
772   $5
773 fi
774 ])
775
776 dnl FPTOOLS_CHECK_LIB_NOWARN(LIBRARY, FUNCTION)
777
778 AC_DEFUN(FPTOOLS_CHECK_LIB_NOWARN,
779 [FPTOOLS_CHECK_FLAG_NOWARN([function_$2],[],[extern char $2(); $2();],
780 [changequote(, )dnl
781   ac_tr_lib=HAVE_LIB`echo $1 | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'`
782  changequote([, ])dnl
783  AC_DEFINE_UNQUOTED($ac_tr_lib)
784 ],
785 [FPTOOLS_CHECK_FLAG_NOWARN([library_$1],[-l$1],[extern char $2(); $2();],
786 [changequote(, )dnl
787   ac_tr_lib=HAVE_LIB`echo $1 | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'`
788  changequote([, ])dnl
789  AC_DEFINE_UNQUOTED($ac_tr_lib)
790 ],
791 []
792 )])]
793 )
794
795 dnl check for prototypes
796 dnl
797 AC_DEFUN([AC_C_PROTOTYPES],
798 [AC_CACHE_CHECK([prototypes], ac_cv_prototypes,
799 [AC_TRY_COMPILE([
800 void foo(int);
801 void foo(i)
802 int i; { 
803 return;
804 }
805 ],
806 [int i;], 
807 ac_cv_prototypes=yes,
808 ac_cv_prototypes=no)])
809 if test "$ac_cv_prototypes" = yes; then
810 AC_DEFINE([HAVE_PROTOTYPES])
811 fi
812 ])
813
814 dnl ** Check which CATALOG file we have to use with DocBook SGML.
815 dnl
816 dnl FPTOOLS_DOCBOOK_CATALOG(VARIABLE, JADE, STYLESHEET, CATALOGS-TO-CHECK-FOR)
817 dnl
818 dnl If any of the catalogs given in CATALOGS-TO-CHECK-FOR works on this
819 dnl platform, let VARIABLE refer to this catalog; otherwise, VARIABLE
820 dnl is set to "no".  JADE is the jade executable and STYLESHEET
821 dnl a DocBook style sheet.
822 dnl
823 AC_DEFUN(FPTOOLS_DOCBOOK_CATALOG,
824 [AC_CACHE_CHECK([for DocBook CATALOG], fptools_cv_sgml_catalog,
825 [
826 cat > conftest.sgml << EOF
827 <!DOCTYPE Article PUBLIC "-//OASIS//DTD DocBook V3.1//EN">
828 <Article>
829 <ArtHeader>
830 <Title>Test</Title>
831 <Author><OtherName>Test</OtherName></Author>
832 <Address>Test</Address>
833 <PubDate>Test</PubDate>
834 </ArtHeader>
835 <Sect1><Title>Test</Title>
836 <Para>
837 Test.
838 </Para>
839 </Sect1>
840 </Article>
841 EOF
842 fptools_cv_sgml_catalog=no
843 if test -z "$SGML_CATALOG_FILES" ; then
844  for fptools_catalog in $4; do
845    ac_try="$2 -t rtf -d $3#print -c $fptools_catalog conftest.sgml"
846    if AC_TRY_EVAL(ac_try); then
847      fptools_cv_sgml_catalog=[$]fptools_catalog
848      break
849    fi
850  done
851 else
852 # If the env var SGML_CATALOG_FILES is defined, assume things are cool.
853   fptools_cv_sgml_catalog="yes"
854 fi
855 ])
856 rm -rf conftest*
857 if test $fptools_cv_sgml_catalog != "no"; then
858   $1=$fptools_cv_sgml_catalog
859 fi
860 ])
861
862 dnl ######################################################################
863 dnl FPTOOLS_SEARCH_LIBS(INCLUDES, FUNCTION, SEARCH-LIBS [, ACTION-IF-FOUND
864 dnl                     [, ACTION-IF-NOT-FOUND [, OTHER-LIBRARIES]]])
865 dnl Search for a library defining FUNC, if it's not already available.
866 dnl This is almost the same as AC_SEARCH_LIBS, but the INCLUDES can be
867 dnl specified.
868 dnl ######################################################################
869
870 AC_DEFUN(FPTOOLS_SEARCH_LIBS,
871 [AC_PREREQ([2.13])
872 AC_CACHE_CHECK([for library containing $2], [ac_cv_search_$2],
873 [ac_func_search_save_LIBS="$LIBS"
874 ac_cv_search_$2="no"
875 AC_TRY_LINK([$1], [$2()], [ac_cv_search_$2="none required"])
876 test "$ac_cv_search_$2" = "no" && for i in $3; do
877 LIBS="-l$i $6 $ac_func_search_save_LIBS"
878 AC_TRY_LINK([$1], [$2()],
879 [ac_cv_search_$2="-l$i"
880 break])
881 done
882 LIBS="$ac_func_search_save_LIBS"])
883 if test "$ac_cv_search_$2" != "no"; then
884   test "$ac_cv_search_$2" = "none required" || LIBS="$ac_cv_search_$2 $LIBS"
885   $4
886 else :
887   $5
888 fi])
889
890 dnl ####################### -*- Mode: M4 -*- ###########################
891 dnl Copyright (C) 98, 1999 Matthew D. Langston <langston@SLAC.Stanford.EDU>
892 dnl
893 dnl This file is free software; you can redistribute it and/or modify it
894 dnl under the terms of the GNU General Public License as published by
895 dnl the Free Software Foundation; either version 2 of the License, or
896 dnl (at your option) any later version.
897 dnl
898 dnl This file is distributed in the hope that it will be useful, but
899 dnl WITHOUT ANY WARRANTY; without even the implied warranty of
900 dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
901 dnl General Public License for more details.
902 dnl
903 dnl You should have received a copy of the GNU General Public License
904 dnl along with this file; if not, write to:
905 dnl
906 dnl   Free Software Foundation, Inc.
907 dnl   Suite 330
908 dnl   59 Temple Place
909 dnl   Boston, MA 02111-1307, USA.
910 dnl ####################################################################
911
912
913 dnl @synopsis FPTOOLS_CHECK_LIBM
914 dnl 
915 dnl Search for math library (typically -lm).
916 dnl
917 dnl The variable LIBM (which is not an output variable by default) is
918 dnl set to a value which is suitable for use in a Makefile (for example,
919 dnl in make's LOADLIBES macro) provided you AC_SUBST it first.
920 dnl
921 dnl @author Matthew D. Langston <langston@SLAC.Stanford.EDU>
922
923 # FPTOOLS_CHECK_LIBM - check for math library
924 AC_DEFUN(FPTOOLS_CHECK_LIBM,
925 [AC_REQUIRE([AC_CANONICAL_HOST])dnl
926 LIBM=
927 case "$host" in
928 *-*-beos*)
929   # These system don't have libm
930   ;;
931 *-ncr-sysv4.3*)
932   AC_CHECK_LIB(mw, _mwvalidcheckl, LIBM="-lmw")
933   AC_CHECK_LIB(m, main, LIBM="$LIBM -lm")
934   ;;
935 *)
936   AC_CHECK_LIB(m, main, LIBM="-lm")
937   ;;
938 esac
939 ])
940
941 dnl ######################################################################
942 dnl Note: Caching has been completely rewritten, but is still no perfect yet.
943 dnl ######################################################################
944
945 dnl ########################### -*- Mode: M4 -*- #######################
946 dnl Copyright (C) 98, 1999 Matthew D. Langston <langston@SLAC.Stanford.EDU>
947 dnl
948 dnl This file is free software; you can redistribute it and/or modify it
949 dnl under the terms of the GNU General Public License as published by
950 dnl the Free Software Foundation; either version 2 of the License, or
951 dnl (at your option) any later version.
952 dnl
953 dnl This file is distributed in the hope that it will be useful, but
954 dnl WITHOUT ANY WARRANTY; without even the implied warranty of
955 dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
956 dnl General Public License for more details.
957 dnl
958 dnl You should have received a copy of the GNU General Public License
959 dnl along with this file; if not, write to:
960 dnl
961 dnl   Free Software Foundation, Inc.
962 dnl   Suite 330
963 dnl   59 Temple Place
964 dnl   Boston, MA 02111-1307, USA.
965 dnl ####################################################################
966
967 dnl @synopsis FPTOOLS_HAVE_OPENGL
968 dnl 
969 dnl Search for OpenGL.  We search first for Mesa (a GPL'ed version of
970 dnl OpenGL) before a vendor's version of OpenGL if we were specifically
971 dnl asked to with `--with-Mesa=yes' or `--with-Mesa'.
972 dnl
973 dnl The four "standard" OpenGL libraries are searched for: "-lGL",
974 dnl "-lGLU", "-lGLX" (or "-lMesaGL", "-lMesaGLU" as the case may be) and
975 dnl "-lglut".
976 dnl
977 dnl All of the libraries that are found (since "-lglut" or "-lGLX" might
978 dnl be missing) are added to the shell output variable "GL_LIBS", along
979 dnl with any other libraries that are necessary to successfully link an
980 dnl OpenGL application (e.g. the X11 libraries).  Care has been taken to
981 dnl make sure that all of the libraries in "GL_LIBS" are listed in the
982 dnl proper order.
983 dnl
984 dnl Additionally, the shell output variable "GL_CFLAGS" is set to any
985 dnl flags (e.g. "-I" flags) that are necessary to successfully compile
986 dnl an OpenGL application.
987 dnl
988 dnl The following shell variable (which are not output variables) are
989 dnl also set to either "yes" or "no" (depending on which libraries were
990 dnl found) to help you determine exactly what was found.
991 dnl
992 dnl   have_GL
993 dnl   have_GLU
994 dnl   have_GLX
995 dnl   have_glut
996 dnl
997 dnl A complete little toy "Automake `make distcheck'" package of how to
998 dnl use this macro is available at:
999 dnl
1000 dnl   ftp://ftp.slac.stanford.edu/users/langston/autoconf/ac_opengl-0.01.tar.gz
1001 dnl
1002 dnl Please note that as the ac_opengl macro and the toy example evolves,
1003 dnl the version number increases, so you may have to adjust the above
1004 dnl URL accordingly.
1005 dnl
1006 dnl @author Matthew D. Langston <langston@SLAC.Stanford.EDU>
1007
1008 AC_DEFUN(FPTOOLS_HAVE_OPENGL,
1009 [
1010   AC_REQUIRE([AC_PROG_CC])
1011   AC_REQUIRE([AC_PATH_X])
1012   AC_REQUIRE([AC_PATH_XTRA])
1013   AC_REQUIRE([FPTOOLS_CHECK_LIBM])
1014
1015 dnl Check for Mesa first if we were asked to.
1016   AC_ARG_ENABLE(Mesa,
1017 [  --enable-mesa
1018         Prefer Mesa over a vendor's native OpenGL library (default=no)
1019 ],
1020                 use_Mesa=$enableval,
1021                 use_Mesa=no)
1022
1023   if test x"$use_Mesa" = xyes; then
1024      GL_search_list="MesaGL  GL  opengl32"
1025     GLU_search_list="MesaGLU GLU glu32"
1026     GLX_search_list="MesaGLX GLX"
1027   else
1028      GL_search_list="GL  opengl32 MesaGL"
1029     GLU_search_list="GLU glu32    MesaGLU"
1030     GLX_search_list="GLX          MesaGLX"
1031   fi      
1032
1033   AC_LANG_SAVE
1034   AC_LANG_C
1035
1036 dnl If we are running under X11 then add in the appropriate libraries.
1037   if test x"$no_x" != xyes; then
1038 dnl Add everything we need to compile and link X programs to GL_CFLAGS
1039 dnl and GL_X_LIBS/GLUT_X_LIBS.
1040     GL_CFLAGS="$CPPFLAGS $X_CFLAGS"
1041     GL_X_LIBS="$X_LIBS $X_PRE_LIBS -lXext -lX11 $X_EXTRA_LIBS $LIBM"
1042     GLUT_X_LIBS="$X_LIBS $X_PRE_LIBS -lXmu -lXt -lXi -lXext -lX11 $X_EXTRA_LIBS $LIBM"
1043   fi
1044   GL_save_CPPFLAGS="$CPPFLAGS"
1045   CPPFLAGS="$GL_CFLAGS"
1046
1047   GL_save_LIBS="$LIBS"
1048   LIBS="$GL_X_LIBS"
1049
1050   FPTOOLS_SEARCH_LIBS([#include <GL/gl.h>],   glEnd,         $GL_search_list,  have_GL=yes,   have_GL=no)
1051   FPTOOLS_SEARCH_LIBS([#include <GL/glu.h>],  gluNewQuadric, $GLU_search_list, have_GLU=yes,  have_GLU=no)
1052   FPTOOLS_SEARCH_LIBS([#include <GL/glx.h>],  glXWaitX,      $GLX_search_list, have_GLX=yes,  have_GLX=no)
1053
1054   if test -n "$LIBS"; then
1055     GL_LIBS="$LDFLAGS $LIBS"
1056   else
1057     GL_LIBS="$LDFLAGS"
1058     GL_CFLAGS=
1059   fi
1060
1061   LIBS="$GLUT_X_LIBS"
1062
1063   FPTOOLS_SEARCH_LIBS([#include <GL/glut.h>], glutMainLoop,  glut32 glut,      have_glut=yes, have_glut=no)
1064
1065   if test -n "$LIBS"; then
1066     GLUT_LIBS="$LDFLAGS $LIBS"
1067   fi
1068
1069   AC_CACHE_CHECK([OpenGL flags], mdl_cv_gl_cflags, [mdl_cv_gl_cflags="$GL_CFLAGS"])
1070   GL_CFLAGS="$mdl_cv_gl_cflags"
1071   AC_SUBST(GL_CFLAGS)
1072   AC_CACHE_CHECK([OpenGL libs],  mdl_cv_gl_libs,   [mdl_cv_gl_libs="$GL_LIBS"])
1073   GL_LIBS="$mdl_cv_gl_libs"
1074   AC_SUBST(GL_LIBS)
1075   AC_CACHE_CHECK([GLUT libs],  mdl_cv_glut_libs,   [mdl_cv_glut_libs="$GLUT_LIBS"])
1076   GLUT_LIBS="$mdl_cv_glut_libs"
1077   AC_SUBST(GLUT_LIBS)
1078
1079 dnl Reset GL_X_LIBS/GLUT_X_LIBS regardless, since they were just temporary variables
1080 dnl and we don't want to be global namespace polluters.
1081   GL_X_LIBS=
1082   GLUT_X_LIBS=
1083
1084   LIBS="$GL_save_LIBS"
1085   CPPFLAGS="$GL_save_CPPFLAGS"
1086
1087   AC_LANG_RESTORE
1088 ])
1089
1090 # LocalWords:  fi
1091
1092
1093 dnl
1094 dnl Check to see whether CC (gcc) supports a particular option.
1095 dnl
1096 AC_DEFUN(FPTOOLS_CC_FLAG,
1097 [
1098 AC_CACHE_CHECK([whether $CC accepts $1], [ac_cv_cc_$2],
1099 [save_CFLAGS="$CFLAGS"
1100  CFLAGS="$CFLAGS $1"
1101  AC_LANG_C
1102  AC_TRY_COMPILE(,[int main(){return(0);}],
1103                  [ac_cv_cc_$2=yes],
1104                  [ac_cv_cc_$2=no])
1105  CFLAGS="$save_CFLAGS"
1106 ])
1107 if test "$ac_cv_cc_$2"x = "yesx"; then
1108   $2=$1;
1109 else
1110   $2="";
1111 fi;
1112 ])
1113
1114 dnl
1115 dnl Check to see whether 'struct msghdr' contains msg_control
1116 dnl 
1117 AC_DEFUN(FPTOOLS_MSGHDR_MSG_CONTROL,
1118 [AC_CACHE_CHECK([for msg_control in struct msghdr], fptools_cv_struct_msghdr_msg_control,
1119 [AC_TRY_COMPILE([#include <sys/types.h>
1120 #include <sys/uio.h>
1121 #include <sys/socket.h>], [struct msghdr m; m.msg_control;],
1122 fptools_cv_struct_msghdr_msg_control=yes, fptools_cv_struct_msghdr_msg_control=no)])
1123 if test $fptools_cv_struct_msghdr_msg_control = yes; then
1124   AC_DEFINE(HAVE_MSGHDR_MSG_CONTROL)
1125 fi
1126 AC_SUBST(HAVE_MSGHDR_MSG_CONTROL)dnl
1127 ])
1128
1129 dnl
1130 dnl Check to see whether 'struct msghdr' contains msg_accrights
1131 dnl 
1132 AC_DEFUN(FPTOOLS_MSGHDR_MSG_ACCRIGHTS,
1133 [AC_CACHE_CHECK([for msg_accrights in struct msghdr], fptools_cv_struct_msghdr_msg_accrights,
1134 [AC_TRY_COMPILE([#include <sys/types.h>
1135 #include <sys/uio.h>
1136 #include <sys/socket.h>], [struct msghdr m; m.msg_accrights;],
1137 fptools_cv_struct_msghdr_msg_accrights=yes, fptools_cv_struct_msghdr_msg_accrights=no)])
1138 if test $fptools_cv_struct_msghdr_msg_accrights = yes; then
1139   AC_DEFINE(HAVE_MSGHDR_MSG_ACCRIGHTS)
1140 fi
1141 AC_SUBST(HAVE_MSGHDR_MSG_ACCRIGHTS)dnl
1142 ])
1143