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