e0cae15acf180ca7c82609816725a66c31164935
[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 # FPTOOLS_SET_C_LD_FLAGS
8 # ----------------------------------
9 # Set the C and LD flags for a given platform
10 AC_DEFUN([FPTOOLS_SET_C_LD_FLAGS],
11 [
12     case $$1 in
13     i386-apple-darwin|powerpc-apple-darwin)
14         # By default, gcc on OS X will generate SSE
15         # instructions, which need things 16-byte aligned,
16         # but we don't 16-byte align things. Thus drop
17         # back to generic i686 compatibility. Trac #2983.
18         $2="$$2 -march=i686 -m32"
19         $3="$$3 -march=i686 -m32"
20         ;;
21     x86_64-apple-darwin)
22         $2="$$2 -m64"
23         $3="$$3 -m64"
24         ;;
25     esac
26 ])
27
28
29 # FPTOOLS_FLOAT_WORD_ORDER_BIGENDIAN
30 # ----------------------------------
31 # Little endian Arm on Linux with some ABIs has big endian word order
32 # in doubles. Define FLOAT_WORDS_BIGENDIAN if this is the case.
33 AC_DEFUN([FPTOOLS_FLOAT_WORD_ORDER_BIGENDIAN],
34   [AC_CACHE_CHECK([whether float word order is big endian], [fptools_cv_float_word_order_bigendian],
35     [AC_COMPILE_IFELSE(
36       [AC_LANG_PROGRAM(
37         [#include <endian.h>],
38         [#if defined(__FLOAT_WORD_ORDER) && __FLOAT_WORD_ORDER == BIG_ENDIAN
39              return 0;
40          #else
41              not float word order big endian
42          #endif]
43       )],
44       [fptools_cv_float_word_order_bigendian=yes],
45       [fptools_cv_float_word_order_bigendian=no])
46     ])
47   case $fptools_cv_float_word_order_bigendian in
48       yes)
49           AC_DEFINE([FLOAT_WORDS_BIGENDIAN], 1,
50           [Define to 1 if your processor stores words of floats with
51            the most significant byte first]) ;;
52   esac
53 ])
54
55
56 # FP_EVAL_STDERR(COMMAND)
57 # -----------------------
58 # Eval COMMAND, save its stderr (without lines resulting from shell tracing)
59 # into the file conftest.err and the exit status in the variable fp_status.
60 AC_DEFUN([FP_EVAL_STDERR],
61 [{ (eval $1) 2>conftest.er1
62   fp_status=$?
63   grep -v '^ *+' conftest.er1 >conftest.err
64   rm -f conftest.er1
65   (exit $fp_status); }[]dnl
66 ])# FP_EVAL_STDERR
67
68
69 # FP_ARG_WITH_PATH_GNU_PROG
70 # --------------------
71 # XXX
72 #
73 # $1 = the command to look for
74 # $2 = the variable to set
75 #
76 AC_DEFUN([FP_ARG_WITH_PATH_GNU_PROG],
77 [
78 AC_ARG_WITH($2,
79 [AC_HELP_STRING([--with-$2=ARG],
80         [Use ARG as the path to $2 [default=autodetect]])],
81 [
82     if test "$HostOS" = "mingw32"
83     then
84         AC_MSG_WARN([Request to use $withval will be ignored])
85     else
86         $1=$withval
87     fi
88 ],
89 [
90     if test "$HostOS" != "mingw32"
91     then
92         AC_PATH_PROG([$1], [$2])
93         if test -z "$$1"
94         then
95             AC_MSG_ERROR([cannot find $2 in your PATH, no idea how to link])
96         fi
97     fi
98 ]
99 )
100 ]) # FP_ARG_WITH_PATH_GNU_PROG
101
102
103 # FP_PROG_CONTEXT_DIFF
104 # --------------------
105 # Figure out how to do context diffs. Sets the output variable ContextDiffCmd.
106 #
107 # Note: NeXTStep thinks diff'ing a file against itself is "trouble".
108 #
109 # Used by ghc, glafp-utils/ltx, and glafp-utils/runstdtest.
110 AC_DEFUN([FP_PROG_CONTEXT_DIFF],
111 [AC_CACHE_CHECK([for a working context diff], [fp_cv_context_diff],
112 [echo foo > conftest1
113 echo foo > conftest2
114 fp_cv_context_diff=no
115 for fp_var in '-U 1' '-u1' '-C 1' '-c1'
116 do
117   if diff $fp_var conftest1 conftest2 > /dev/null 2>&1; then
118     fp_cv_context_diff="diff $fp_var"
119     break
120   fi
121 done])
122 if test x"$fp_cv_context_diff" = xno; then
123    AC_MSG_ERROR([cannot figure out how to do context diffs])
124 fi
125 AC_SUBST(ContextDiffCmd, [$fp_cv_context_diff])
126 ])# FP_PROG_CONTEXT_DIFF
127
128
129 # FP_COMPUTE_INT(EXPRESSION, VARIABLE, INCLUDES, IF-FAILS)
130 # --------------------------------------------------------
131 # Assign VARIABLE the value of the compile-time EXPRESSION using INCLUDES for
132 # compilation. Execute IF-FAILS when unable to determine the value. Works for
133 # cross-compilation, too.
134 #
135 # Implementation note: We are lazy and use an internal autoconf macro, but it
136 # is supported in autoconf versions 2.50 up to the actual 2.57, so there is
137 # little risk.
138 AC_DEFUN([FP_COMPUTE_INT],
139 [_AC_COMPUTE_INT([$1], [$2], [$3], [$4])[]dnl
140 ])# FP_COMPUTE_INT
141
142
143 # FP_CHECK_ALIGNMENT(TYPE, [IGNORED], [INCLUDES = DEFAULT-INCLUDES])
144 # ------------------------------------------------------------------
145 # A variation of AC_CHECK_SIZEOF for computing the alignment restrictions of a
146 # given type. Defines ALIGNMENT_TYPE.
147 AC_DEFUN([FP_CHECK_ALIGNMENT],
148 [AS_LITERAL_IF(m4_translit([[$1]], [*], [p]), [],
149                [AC_FATAL([$0: requires literal arguments])])[]dnl
150 AC_CHECK_TYPE([$1], [], [], [$3])[]dnl
151 m4_pushdef([fp_Cache], [AS_TR_SH([fp_cv_alignment_$1])])[]dnl
152 AC_CACHE_CHECK([alignment of $1], [fp_Cache],
153 [if test "$AS_TR_SH([ac_cv_type_$1])" = yes; then
154   FP_COMPUTE_INT([(long) (&((struct { char c; $1 ty; } *)0)->ty)],
155                  [fp_Cache],
156                  [AC_INCLUDES_DEFAULT([$3])],
157                  [AC_MSG_ERROR([cannot compute alignment ($1)
158 See `config.log' for more details.], [77])])
159 else
160   fp_Cache=0
161 fi])[]dnl
162 AC_DEFINE_UNQUOTED(AS_TR_CPP(alignment_$1), $fp_Cache, [The alignment of a `$1'.])[]dnl
163 m4_popdef([fp_Cache])[]dnl
164 ])# FP_CHECK_ALIGNMENT
165
166
167 # FP_LEADING_UNDERSCORE
168 # ---------------------
169 # Test for determining whether symbol names have a leading underscore. We assume
170 # that they _haven't_ if anything goes wrong. Sets the output variable
171 # LeadingUnderscore to YES or NO and defines LEADING_UNDERSCORE correspondingly.
172 #
173 # Some nlist implementations seem to try to be compatible by ignoring a leading
174 # underscore sometimes (eg. FreeBSD). We therefore have to work around this by
175 # checking for *no* leading underscore first. Sigh.  --SDM
176 #
177 # Similarly on OpenBSD, but this test doesn't help. -- dons
178 AC_DEFUN([FP_LEADING_UNDERSCORE],
179 [AC_CHECK_LIB([elf], [nlist], [LIBS="-lelf $LIBS"])
180 AC_CACHE_CHECK([leading underscore in symbol names], [fptools_cv_leading_underscore], [
181 # Hack!: nlist() under Digital UNIX insist on there being an _,
182 # but symbol table listings shows none. What is going on here?!?
183 #
184 # Another hack: cygwin doesn't come with nlist.h , so we hardwire
185 # the underscoredness of that "platform"
186 case $HostPlatform in
187 *openbsd*) # x86 openbsd is ELF from 3.4 >, meaning no leading uscore
188   case $build in
189     i386-*2\.@<:@0-9@:>@ | i386-*3\.@<:@0-3@:>@ ) fptools_cv_leading_underscore=yes ;;
190     *) fptools_cv_leading_underscore=no ;;
191   esac ;;
192 alpha-dec-osf*) fptools_cv_leading_underscore=no;;
193 *cygwin32) fptools_cv_leading_underscore=yes;;
194 *mingw32) fptools_cv_leading_underscore=yes;;
195
196     # HACK: Apple doesn't seem to provide nlist in the 64-bit-libraries
197 x86_64-apple-darwin*) fptools_cv_leading_underscore=yes;;
198
199 *) AC_RUN_IFELSE([AC_LANG_SOURCE([[#ifdef HAVE_NLIST_H
200 #include <nlist.h>
201 struct nlist xYzzY1[] = {{"xYzzY1", 0},{0}};
202 struct nlist xYzzY2[] = {{"_xYzzY2", 0},{0}};
203 #endif
204
205 int main(argc, argv)
206 int argc;
207 char **argv;
208 {
209 #ifdef HAVE_NLIST_H
210     if(nlist(argv[0], xYzzY1) == 0 && xYzzY1[0].n_value != 0)
211         exit(1);
212     if(nlist(argv[0], xYzzY2) == 0 && xYzzY2[0].n_value != 0)
213         exit(0);
214 #endif
215     exit(1);
216 }]])],[fptools_cv_leading_underscore=yes],[fptools_cv_leading_underscore=no],[fptools_cv_leading_underscore=no])
217 ;;
218 esac]);
219 AC_SUBST([LeadingUnderscore], [`echo $fptools_cv_leading_underscore | sed 'y/yesno/YESNO/'`])
220 if test x"$fptools_cv_leading_underscore" = xyes; then
221    AC_DEFINE([LEADING_UNDERSCORE], [1], [Define to 1 if C symbols have a leading underscore added by the compiler.])
222 fi])# FP_LEADING_UNDERSCORE
223
224
225 # FP_COMPARE_VERSIONS(VERSION1, TEST, VERSION2, [ACTION-IF-TRUE], [ACTION-IF-FALSE])
226 # ----------------------------------------------------------------------------------
227 # Compare dotted version numbers VERSION1 and VERSION2 lexicographically according
228 # to TEST (one of -eq, -ne, -lt, -le, -gt, or -ge).
229 AC_DEFUN([FP_COMPARE_VERSIONS],
230 [fp_version1=$1; fp_version2=$3
231 fp_save_IFS=$IFS; IFS='.'
232 while test x"$fp_version1" != x || test x"$fp_version2" != x
233 do
234
235   set dummy $fp_version1; shift
236   fp_num1=""
237   test $[@%:@] = 0 || { fp_num1="[$]1"; shift; }
238   test x"$fp_num1" = x && fp_num1="0"
239   fp_version1="[$]*"
240
241   set dummy $fp_version2; shift
242   fp_num2=""
243   test $[@%:@] = 0 || { fp_num2="[$]1"; shift; }
244   test x"$fp_num2" = x && fp_num2="0"
245   fp_version2="[$]*"
246
247   test "$fp_num1" = "$fp_num2" || break;
248 done
249 IFS=$fp_save_IFS
250 AS_IF([test "$fp_num1" $2 "$fp_num2"], [$4], [$5])[]dnl
251 ])# FP_COMPARE_VERSIONS
252
253
254 dnl
255 dnl Check for GreenCard and version.
256 dnl
257 AC_DEFUN([FPTOOLS_GREENCARD],
258 [
259 AC_PATH_PROG(GreenCardCmd,greencard)
260 AC_CACHE_CHECK([for version of greencard], fptools_cv_greencard_version,
261 changequote(, )dnl
262 [if test x"$GreenCardCmd" != x; then
263    fptools_cv_greencard_version="`$GreenCardCmd --version |
264                           grep 'version' | sed -e 's/greencard. version \([^ ]*\).*/\1/g'`"
265 else
266    fptools_cv_greencard_version=""
267 fi
268 changequote([, ])dnl
269 ])
270 FP_COMPARE_VERSIONS([$fptools_cv_greencard_version],[-lt],[$1],
271   [AC_MSG_ERROR([greencard version $1 or later is required (found '$fptools_cv_greencard_version')])])[]dnl
272 GreenCardVersion=$fptools_cv_greencard_version
273 AC_SUBST(GreenCardVersion)
274 ])
275
276 dnl
277 dnl Check for Happy and version.  If we're building GHC, then we need
278 dnl at least Happy version 1.14.  If there's no installed Happy, we look
279 dnl for a happy source tree and point the build system at that instead.
280 dnl
281 AC_DEFUN([FPTOOLS_HAPPY],
282 [AC_PATH_PROG(HappyCmd,happy,)
283 # Happy is passed to Cabal, so we need a native path
284 if test "x$HostPlatform"  = "xi386-unknown-mingw32" && \
285    test "${OSTYPE}"      != "msys"                  && \
286    test "${HappyCmd}"    != ""
287 then
288     # Canonicalise to <drive>:/path/to/gcc
289     HappyCmd=`cygpath -m "${HappyCmd}"`
290     AC_MSG_NOTICE([normalized happy command to $HappyCmd])
291 fi
292
293 AC_CACHE_CHECK([for version of happy], fptools_cv_happy_version,
294 changequote(, )dnl
295 [if test x"$HappyCmd" != x; then
296    fptools_cv_happy_version=`"$HappyCmd" -v |
297                           grep 'Happy Version' | sed -e 's/Happy Version \([^ ]*\).*/\1/g'` ;
298 else
299    fptools_cv_happy_version="";
300 fi;
301 changequote([, ])dnl
302 ])
303 if test ! -f compiler/parser/Parser.hs || test ! -f compiler/cmm/CmmParse.hs || test ! -f compiler/parser/ParserCore.hs
304 then
305     FP_COMPARE_VERSIONS([$fptools_cv_happy_version],[-lt],[1.16],
306       [AC_MSG_ERROR([Happy version 1.16 or later is required to compile GHC.])])[]
307 fi
308 HappyVersion=$fptools_cv_happy_version;
309 AC_SUBST(HappyVersion)
310 ])
311
312 dnl
313 dnl Check for Alex and version.  If we're building GHC, then we need
314 dnl at least Alex version 2.0.1.
315 dnl
316 AC_DEFUN([FPTOOLS_ALEX],
317 [
318 AC_PATH_PROG(AlexCmd,alex,)
319 # Alex is passed to Cabal, so we need a native path
320 if test "x$HostPlatform"  = "xi386-unknown-mingw32" && \
321    test "${OSTYPE}"      != "msys"                  && \
322    test "${AlexCmd}"     != ""
323 then
324     # Canonicalise to <drive>:/path/to/gcc
325     AlexCmd=`cygpath -m "${AlexCmd}"`
326 fi
327
328 AC_CACHE_CHECK([for version of alex], fptools_cv_alex_version,
329 changequote(, )dnl
330 [if test x"$AlexCmd" != x; then
331    fptools_cv_alex_version=`"$AlexCmd" -v |
332                           grep 'Alex [Vv]ersion' | sed -e 's/Alex [Vv]ersion \([0-9\.]*\).*/\1/g'` ;
333 else
334    fptools_cv_alex_version="";
335 fi;
336 changequote([, ])dnl
337 ])
338 if test ! -f compiler/cmm/CmmLex.hs || test ! -f compiler/parser/Lexer.hs
339 then
340     FP_COMPARE_VERSIONS([$fptools_cv_alex_version],[-lt],[2.1.0],
341       [AC_MSG_ERROR([Alex version 2.1.0 or later is required to compile GHC.])])[]
342 fi
343 AlexVersion=$fptools_cv_alex_version;
344 AC_SUBST(AlexVersion)
345 ])
346
347
348 # FP_PROG_LD_X
349 # ------------
350 # Sets the output variable LdXFlag to -x if ld supports this flag, otherwise the
351 # variable's value is empty.
352 AC_DEFUN([FP_PROG_LD_X],
353 [
354 AC_CACHE_CHECK([whether ld understands -x], [fp_cv_ld_x],
355 [echo 'foo() {}' > conftest.c
356 ${CC-cc} -c conftest.c
357 if ${LdCmd} -r -x -o conftest2.o conftest.o > /dev/null 2>&1; then
358    fp_cv_ld_x=yes
359 else
360    fp_cv_ld_x=no
361 fi
362 rm -rf conftest*])
363 if test "$fp_cv_ld_x" = yes; then
364   LdXFlag=-x
365 else
366   LdXFlag=
367 fi
368 AC_SUBST([LdXFlag])
369 ])# FP_PROG_LD_X
370
371
372 # FP_PROG_LD_IS_GNU
373 # -----------------
374 # Sets the output variable LdIsGNULd to YES or NO, depending on whether it is
375 # GNU ld or not.
376 AC_DEFUN([FP_PROG_LD_IS_GNU],
377 [
378 AC_CACHE_CHECK([whether ld is GNU ld], [fp_cv_gnu_ld],
379 [if ${LdCmd} --version 2> /dev/null | grep "GNU" > /dev/null 2>&1; then
380   fp_cv_gnu_ld=yes
381 else
382   fp_cv_gnu_ld=no
383 fi])
384 AC_SUBST([LdIsGNULd], [`echo $fp_cv_gnu_ld | sed 'y/yesno/YESNO/'`])
385 ])# FP_PROG_LD_IS_GNU
386
387
388 # FP_PROG_AR
389 # ----------
390 # Sets fp_prog_ar_raw to the full path of ar and fp_prog_ar to a non-Cygwin
391 # version of it. Exits if no ar can be found
392 AC_DEFUN([FP_PROG_AR],
393 [AC_PATH_PROG([fp_prog_ar_raw], [ar])
394 if test -z "$fp_prog_ar_raw"; then
395   AC_MSG_ERROR([cannot find ar in your PATH, no idea how to make a library])
396 fi
397 fp_prog_ar="$fp_prog_ar_raw"
398 case $HostPlatform in
399   *mingw32) if test x${OSTYPE} != xmsys; then
400               fp_prog_ar="`cygpath -w "${fp_prog_ar_raw}" | sed -e 's@\\\\@/@g'`"
401               AC_MSG_NOTICE([normalized ar command to $fp_prog_ar])
402             fi
403             ;;
404 esac
405 ])# FP_PROG_AR
406
407
408 # FP_PROG_AR_IS_GNU
409 # -----------------
410 # Sets fp_prog_ar_is_gnu to yes or no, depending on whether it is GNU ar or not.
411 AC_DEFUN([FP_PROG_AR_IS_GNU],
412 [AC_REQUIRE([FP_PROG_AR])
413 AC_CACHE_CHECK([whether $fp_prog_ar_raw is GNU ar], [fp_cv_prog_ar_is_gnu],
414 [if "$fp_prog_ar_raw" --version 2> /dev/null | grep "GNU" > /dev/null 2>&1; then
415   fp_cv_prog_ar_is_gnu=yes
416 else
417   fp_cv_prog_ar_is_gnu=no
418 fi])
419 fp_prog_ar_is_gnu=$fp_cv_prog_ar_is_gnu
420 AC_SUBST([ArIsGNUAr], [`echo $fp_prog_ar_is_gnu | tr 'a-z' 'A-Z'`])
421 ])# FP_PROG_AR_IS_GNU
422
423
424 # FP_PROG_AR_SUPPORTS_ATFILE
425 # -----------------
426 # Sets fp_prog_ar_supports_atfile to yes or no, depending on whether
427 # or not it supports the @file syntax
428 AC_DEFUN([FP_PROG_AR_SUPPORTS_ATFILE],
429 [AC_REQUIRE([FP_PROG_AR])
430  AC_REQUIRE([FP_PROG_AR_ARGS])
431 AC_CACHE_CHECK([whether $fp_prog_ar_raw supports @file], [fp_cv_prog_ar_supports_atfile],
432 [
433 rm -f conftest*
434 touch conftest.file
435 echo conftest.file  > conftest.atfile
436 echo conftest.file >> conftest.atfile
437 "$fp_prog_ar_raw" $fp_prog_ar_args conftest.a @conftest.atfile > /dev/null 2>&1
438 fp_prog_ar_supports_atfile_tmp=`"$fp_prog_ar_raw" t conftest.a 2> /dev/null | grep -c conftest.file`
439 rm -f conftest*
440 if test "$fp_prog_ar_supports_atfile_tmp" -eq 2
441 then
442   fp_cv_prog_ar_supports_atfile=yes
443 else
444   fp_cv_prog_ar_supports_atfile=no
445 fi])
446 fp_prog_ar_supports_atfile=$fp_cv_prog_ar_supports_atfile
447 AC_SUBST([ArSupportsAtFile], [`echo $fp_prog_ar_supports_atfile | tr 'a-z' 'A-Z'`])
448 ])# FP_PROG_AR_SUPPORTS_ATFILE
449
450 # FP_PROG_AR_ARGS
451 # ---------------
452 # Sets fp_prog_ar_args to the arguments for ar and the output variable ArCmd
453 # to a non-Cygwin invocation of ar including these arguments.
454 AC_DEFUN([FP_PROG_AR_ARGS],
455 [AC_REQUIRE([FP_PROG_AR_IS_GNU])
456 AC_CACHE_CHECK([for ar arguments], [fp_cv_prog_ar_args],
457 [
458 # GNU ar needs special treatment: it appears to have problems with
459 # object files with the same name if you use the 's' modifier, but
460 # simple 'ar q' works fine, and doesn't need a separate ranlib.
461 if test $fp_prog_ar_is_gnu = yes; then
462   fp_cv_prog_ar_args="q"
463 else
464   touch conftest.dummy
465   for fp_var in clqsZ clqs cqs clq cq ; do
466      rm -f conftest.a
467      if "$fp_prog_ar_raw" $fp_var conftest.a conftest.dummy > /dev/null 2> /dev/null; then
468         fp_cv_prog_ar_args=$fp_var
469         break
470      fi
471   done
472   rm -f conftest*
473   if test -z "$fp_cv_prog_ar_args"; then
474     AC_MSG_ERROR([cannot figure out how to use your $fp_prog_ar_raw])
475   fi
476 fi])
477 fp_prog_ar_args=$fp_cv_prog_ar_args
478 AC_SUBST([ArCmd], ["$fp_prog_ar"])
479 AC_SUBST([ArArgs], ["$fp_prog_ar_args"])
480
481 ])# FP_PROG_AR_ARGS
482
483
484 # FP_PROG_AR_NEEDS_RANLIB
485 # -----------------------
486 # Sets the output variable RANLIB to "ranlib" if it is needed and found,
487 # to ":" otherwise.
488 AC_DEFUN([FP_PROG_AR_NEEDS_RANLIB],
489 [AC_REQUIRE([FP_PROG_AR_IS_GNU])
490 AC_REQUIRE([FP_PROG_AR_ARGS])
491 AC_REQUIRE([AC_PROG_CC])
492 AC_CACHE_CHECK([whether ranlib is needed], [fp_cv_prog_ar_needs_ranlib],
493 [if test $fp_prog_ar_is_gnu = yes; then
494   fp_cv_prog_ar_needs_ranlib=no
495 elif echo $TargetPlatform | grep "^.*-apple-darwin$"  > /dev/null 2> /dev/null; then
496   # It's quite tedious to check for Apple's crazy timestamps in .a files,
497   # so we hardcode it.
498   fp_cv_prog_ar_needs_ranlib=yes
499 elif echo $fp_prog_ar_args | grep "s" > /dev/null 2> /dev/null; then
500   fp_cv_prog_ar_needs_ranlib=no
501 else
502   fp_cv_prog_ar_needs_ranlib=yes
503 fi])
504 if test $fp_cv_prog_ar_needs_ranlib = yes; then
505    AC_PROG_RANLIB
506 else
507   RANLIB=":"
508   AC_SUBST([RANLIB])
509 fi
510 ])# FP_PROG_AR_NEEDS_RANLIB
511
512
513 # FP_PROG_AR_SUPPORTS_INPUT
514 # -------------------------
515 # Sets the output variable ArSupportsInput to "-input" or "", depending on
516 # whether ar supports -input flag is supported or not.
517 AC_DEFUN([FP_PROG_AR_SUPPORTS_INPUT],
518 [AC_REQUIRE([FP_PROG_AR_IS_GNU])
519 AC_REQUIRE([FP_PROG_AR_ARGS])
520 AC_CACHE_CHECK([whether $fp_prog_ar_raw supports -input], [fp_cv_prog_ar_supports_input],
521 [fp_cv_prog_ar_supports_input=no
522 if test $fp_prog_ar_is_gnu = no; then
523   rm -f conftest*
524   touch conftest.lst
525   if FP_EVAL_STDERR(["$fp_prog_ar_raw" $fp_prog_ar_args conftest.a -input conftest.lst]) >/dev/null; then
526     test -s conftest.err || fp_cv_prog_ar_supports_input=yes
527   fi
528   rm -f conftest*
529 fi])
530 if test $fp_cv_prog_ar_supports_input = yes; then
531     ArSupportsInput="-input"
532 else
533     ArSupportsInput=""
534 fi
535 AC_SUBST([ArSupportsInput])
536 ])# FP_PROG_AR_SUPPORTS_INPUT
537
538
539 dnl
540 dnl AC_SHEBANG_PERL - can we she-bang perl?
541 dnl
542 AC_DEFUN([FPTOOLS_SHEBANG_PERL],
543 [AC_CACHE_CHECK([if your perl works in shell scripts], fptools_cv_shebang_perl,
544 [echo "#!$PerlCmd"'
545 exit $1;
546 ' > conftest
547 chmod u+x conftest
548 (SHELL=/bin/sh; export SHELL; ./conftest 69 > /dev/null)
549 if test $? -ne 69; then
550    fptools_cv_shebang_perl=yes
551 else
552    fptools_cv_shebang_perl=no
553 fi
554 rm -f conftest
555 ])])
556
557
558 # FP_HAVE_GCC
559 # -----------
560 # Extra testing of the result AC_PROG_CC, testing the gcc version no. Sets the
561 # output variables HaveGcc and GccVersion.
562 AC_DEFUN([FP_HAVE_GCC],
563 [AC_REQUIRE([AC_PROG_CC])
564 if test -z "$GCC"; then
565    fp_have_gcc=NO
566 else
567    fp_have_gcc=YES
568 fi
569 if test "$fp_have_gcc" = "NO" -a -d $srcdir/ghc; then
570   AC_MSG_ERROR([gcc is required])
571 fi
572 GccLT34=
573 AC_CACHE_CHECK([version of gcc], [fp_cv_gcc_version],
574 [if test "$fp_have_gcc" = "YES"; then
575    fp_cv_gcc_version="`$CC -v 2>&1 | grep 'version ' | sed -e 's/.*version [[^0-9]]*\([[0-9.]]*\).*/\1/g'`"
576    FP_COMPARE_VERSIONS([$fp_cv_gcc_version], [-lt], [3.0],
577      [AC_MSG_ERROR([Need at least gcc version 3.0 (3.4+ recommended)])])
578    # See #2770: gcc 2.95 doesn't work any more, apparently.  There probably
579    # isn't a very good reason for that, but for now just make configure
580    # fail.
581    FP_COMPARE_VERSIONS([$fp_cv_gcc_version], [-lt], [3.4], GccLT34=YES)
582  else
583    fp_cv_gcc_version="not-installed"
584  fi
585 ])
586 AC_SUBST([HaveGcc], [$fp_have_gcc])
587 AC_SUBST([GccVersion], [$fp_cv_gcc_version])
588 AC_SUBST(GccLT34)
589 ])# FP_HAVE_GCC
590
591 dnl Small feature test for perl version. Assumes PerlCmd
592 dnl contains path to perl binary.
593 dnl
594 dnl (Perl versions prior to v5.6 does not contain the string "v5";
595 dnl instead they display version strings such as "version 5.005".)
596 dnl
597 AC_DEFUN([FPTOOLS_CHECK_PERL_VERSION],
598 [$PerlCmd -v >conftest.out 2>&1
599    if grep "v5" conftest.out >/dev/null 2>&1; then
600       :
601    else
602       AC_MSG_ERROR([your version of perl probably won't work, try upgrading it.])
603    fi
604 rm -fr conftest*
605 ])
606
607
608 # FP_CHECK_PROG(VARIABLE, PROG-TO-CHECK-FOR,
609 #               [VALUE-IF-NOT-FOUND], [PATH], [REJECT])
610 # -----------------------------------------------------
611 # HACK: A small wrapper around AC_CHECK_PROG, setting VARIABLE to the full path
612 # of PROG-TO-CHECK-FOR when found.
613 AC_DEFUN([FP_CHECK_PROG],
614 [AC_CHECK_PROG([$1], [$2], [$as_dir/$ac_word$ac_exec_ext], [$3], [$4], [$5])][]dnl
615 )# FP_CHECK_PROC
616
617
618 # FP_PROG_FIND
619 # ------------
620 # Find a non-WinDoze version of the "find" utility.
621 AC_DEFUN([FP_PROG_FIND],
622 [AC_PATH_PROGS([fp_prog_find], [gfind find], find)
623 echo foo > conftest.txt
624 $fp_prog_find conftest.txt -print > conftest.out 2>&1
625 if grep '^conftest.txt$' conftest.out > /dev/null 2>&1 ; then
626   # OK, looks like a real "find".
627   case $HostPlatform in
628     *mingw32)
629       if test x${OSTYPE} != xmsys
630       then
631             fp_prog_find="`cygpath --mixed ${fp_prog_find}`"
632         AC_MSG_NOTICE([normalized find command to $fp_prog_find])
633       fi ;;
634     *) ;;
635   esac
636   FindCmd="$fp_prog_find"
637 else
638   # Found a poor WinDoze version of "find", ignore it.
639   AC_MSG_WARN([$fp_prog_find looks like a non-*nix find, ignoring it])
640   FP_CHECK_PROG([FindCmd], [find], [], [], [$fp_prog_find])
641 fi
642 rm -f conftest.txt conftest.out
643 AC_SUBST([FindCmd])[]dnl
644 ])# FP_PROG_FIND
645
646
647 # FP_PROG_SORT
648 # ------------
649 # Find a Unix-like sort
650 AC_DEFUN([FP_PROG_SORT],
651 [AC_PATH_PROG([fp_prog_sort], [sort])
652 echo conwip > conftest.txt
653 $fp_prog_sort -f conftest.txt > conftest.out 2>&1
654 if grep 'conwip' conftest.out > /dev/null 2>&1 ; then
655   # The goods
656   SortCmd="$fp_prog_sort"
657 else
658   # Summink else..pick next one.
659   AC_MSG_WARN([$fp_prog_sort looks like a non-*nix sort, ignoring it])
660   FP_CHECK_PROG([SortCmd], [sort], [], [], [$fp_prog_sort])
661 fi
662 rm -f conftest.txt conftest.out
663 AC_SUBST([SortCmd])[]dnl
664 ])# FP_PROG_SORT
665
666 dnl
667 dnl FPTOOLS_NOCACHE_CHECK prints a message, then sets the
668 dnl values of the second argument to the result of running
669 dnl the commands given by the third. It does not cache its
670 dnl result, so it is suitable for checks which should be
671 dnl run every time.
672 dnl
673 AC_DEFUN([FPTOOLS_NOCACHE_CHECK],
674 [AC_MSG_CHECKING([$1])
675  $3
676  AC_MSG_RESULT([$][$2])
677 ])
678
679 dnl
680 dnl FPTOOLS_GHC_VERSION(version)
681 dnl FPTOOLS_GHC_VERSION(major, minor [, patchlevel])
682 dnl FPTOOLS_GHC_VERSION(version, major, minor, patchlevel)
683 dnl
684 dnl Test for version of installed ghc.  Uses $GHC.
685 dnl [original version pinched from c2hs]
686 dnl
687 AC_DEFUN([FPTOOLS_GHC_VERSION],
688 [FPTOOLS_NOCACHE_CHECK([version of ghc], [fptools_version_of_ghc],
689 ["${WithGhc-ghc}" --version > conftestghc 2>&1
690   cat conftestghc >&AS_MESSAGE_LOG_FD
691 #Useless Use Of cat award...
692   fptools_version_of_ghc=`cat conftestghc | sed -n -e 's/, patchlevel *\([[0-9]]\)/.\1/;s/.* version \([[0-9]][[0-9.]]*\).*/\1/p'`
693   rm -fr conftest*
694   if test "[$]fptools_version_of_ghc" = ""
695   then
696     fptools_version_of_ghc='unknown'
697   fi
698 fptools_version_of_ghc[_major]=`echo [$]fptools_version_of_ghc | sed -e 's/^\([[0-9]]\).*/\1/'`
699 fptools_version_of_ghc[_minor]=`echo [$]fptools_version_of_ghc | sed -e 's/^[[0-9]]\.\([[0-9]]*\).*/\1/'`
700 fptools_version_of_ghc[_pl]=`echo [$]fptools_version_of_ghc | sed -n -e 's/^[[0-9]]\.[[0-9]]*\.\([[0-9]]*\)/\1/p'`
701 #
702 if test "[$]fptools_version_of_ghc[_pl]" = ""
703 then
704   fptools_version_of_ghc[_all]="[$]fptools_version_of_ghc[_major].[$]fptools_version_of_ghc[_minor]"
705   fptools_version_of_ghc[_pl]="0"
706 else
707   fptools_version_of_ghc[_all]="[$]fptools_version_of_ghc[_major].[$]fptools_version_of_ghc[_minor].[$]fptools_version_of_ghc[_pl]"
708 fi
709 #
710 ifelse($#, [1], [dnl
711 [$1]="[$]fptools_version_of_ghc[_all]"
712 ], $#, [2], [dnl
713 [$1]="[$]fptools_version_of_ghc[_major]"
714 [$2]="[$]fptools_version_of_ghc[_minor]"
715 ], $#, [3], [dnl
716 [$1]="[$]fptools_version_of_ghc[_major]"
717 [$2]="[$]fptools_version_of_ghc[_minor]"
718 [$3]="[$]fptools_version_of_ghc[_pl]"
719 ], $#, [4], [dnl
720 [$1]="[$]fptools_version_of_ghc[_all]"
721 [$2]="[$]fptools_version_of_ghc[_major]"
722 [$3]="[$]fptools_version_of_ghc[_minor]"
723 [$4]="[$]fptools_version_of_ghc[_pl]"
724 ])
725 ])
726 ])dnl
727
728
729 # FP_CHECK_FUNC(FUNCTION, PROLOGUE, BODY, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND])
730 # ---------------------------------------------------------------------------------
731 # A variant of AC_CHECK_FUNCS, limited to a single FUNCTION, but with the
732 # additional flexibility of specifying the PROLOGUE and BODY.
733 AC_DEFUN([FP_CHECK_FUNC],
734 [AS_VAR_PUSHDEF([fp_func], [fp_cv_func_$1])dnl
735 AC_CACHE_CHECK([for $1], fp_func,
736 [AC_LINK_IFELSE([AC_LANG_PROGRAM([$2], [$3])],
737                 [AS_VAR_SET(fp_func, yes)],
738                 [AS_VAR_SET(fp_func, no)])])
739 AS_IF([test AS_VAR_GET(fp_func) = yes],
740       [AC_DEFINE(AS_TR_CPP(HAVE_$1), [1],
741                 [Define to 1 if you have the `]$1[' function.]) $4],
742       [$5])dnl
743 AS_VAR_POPDEF([fp_func])dnl
744 ])# FP_CHECK_FUNC
745
746
747 # FP_GEN_DOCBOOK_XML
748 # ------------------
749 # Generates a DocBook XML V4.2 document in conftest.xml.
750 #
751 # It took a lot of experimentation to find a document that will cause
752 # xsltproc to fail with an error code when the relevant
753 # stylesheets/DTDs are not found.  I couldn't make xsltproc fail with
754 # a single-file document, it seems a multi-file document is needed.
755 # -- SDM 2009-06-03
756 #
757 AC_DEFUN([FP_GEN_DOCBOOK_XML],
758 [rm -f conftest.xml conftest-book.xml
759 cat > conftest.xml << EOF
760 <?xml version="1.0" encoding="iso-8859-1"?>
761 <!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
762    "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd" [[
763 <!ENTITY conftest-book SYSTEM "conftest-book.xml">
764 ]]>
765 <book id="test">
766 &conftest-book;
767 </book>
768 EOF
769 cat >conftest-book.xml << EOF
770 <?xml version="1.0" encoding="iso-8859-1"?>
771   <title>A DocBook &ldquo;Test Document&rdquo;</title>
772   <chapter id="id-one">
773     <title>A Chapter Title</title>
774     <para>This is a paragraph, referencing <xref linkend="id-two"/>.</para>
775   </chapter>
776   <chapter id="id-two">
777     <title>Another Chapter Title</title>
778     <para>This is another paragraph, referencing <xref linkend="id-one"/>.</para>
779   </chapter>
780 EOF
781 ]) # FP_GEN_DOCBOOK_XML
782
783
784 # FP_PROG_DBLATEX
785 # ----------------
786 # Sets the output variable DblatexCmd to the full path of dblatex,
787 # which we use for building PDF and PS docs.
788 # DblatexCmd is empty if dblatex could not be found.
789 AC_DEFUN([FP_PROG_DBLATEX],
790 [AC_PATH_PROG([DblatexCmd], [dblatex])
791 if test -z "$DblatexCmd"; then
792   AC_MSG_WARN([cannot find dblatex in your PATH, you will not be able to build the PDF and PS documentation])
793 fi
794 ])# FP_PROG_DBLATEX
795
796
797 # FP_PROG_XSLTPROC
798 # ----------------
799 # Sets the output variable XsltprocCmd to the full path of the XSLT processor
800 # xsltproc. XsltprocCmd is empty if xsltproc could not be found.
801 AC_DEFUN([FP_PROG_XSLTPROC],
802 [AC_PATH_PROG([XsltprocCmd], [xsltproc])
803 if test -z "$XsltprocCmd"; then
804   AC_MSG_WARN([cannot find xsltproc in your PATH, you will not be able to build the HTML documentation])
805 fi
806 ])# FP_PROG_XSLTPROC
807
808
809 # FP_DOCBOOK_XSL
810 # ----------------------------
811 # Check that we can process a DocBook XML document to HTML using xsltproc.
812 AC_DEFUN([FP_DOCBOOK_XSL],
813 [AC_REQUIRE([FP_PROG_XSLTPROC])dnl
814 if test -n "$XsltprocCmd"; then
815   AC_CACHE_CHECK([for DocBook XSL stylesheet], fp_cv_dir_docbook_xsl,
816   [FP_GEN_DOCBOOK_XML
817   fp_cv_dir_docbook_xsl=no
818   if $XsltprocCmd --nonet http://docbook.sourceforge.net/release/xsl/current/html/chunk.xsl conftest.xml > /dev/null 2>&1; then
819      fp_cv_dir_docbook_xsl=yes
820   fi
821   rm -rf conftest*])
822 fi
823 if test x"$fp_cv_dir_docbook_xsl" = xno; then
824   AC_MSG_WARN([cannot find DocBook XSL stylesheets, you will not be able to build the documentation])
825   HAVE_DOCBOOK_XSL=NO
826 else
827   HAVE_DOCBOOK_XSL=YES
828 fi
829 AC_SUBST([HAVE_DOCBOOK_XSL])
830 ])# FP_DOCBOOK_XSL
831
832
833 # FP_PROG_XMLLINT
834 # ----------------
835 # Sets the output variable XmllintCmd to the full path of the XSLT processor
836 # xmllint. XmllintCmd is empty if xmllint could not be found.
837 AC_DEFUN([FP_PROG_XMLLINT],
838 [AC_PATH_PROG([XmllintCmd], [xmllint])
839 if test -z "$XmllintCmd"; then
840   AC_MSG_WARN([cannot find xmllint in your PATH, you will not be able to validate your documentation])
841 fi
842 ])# FP_PROG_XMLLINT
843
844
845 # FP_CHECK_DOCBOOK_DTD
846 # --------------------
847 AC_DEFUN([FP_CHECK_DOCBOOK_DTD],
848 [AC_REQUIRE([FP_PROG_XMLLINT])dnl
849 if test -n "$XmllintCmd"; then
850   AC_MSG_CHECKING([for DocBook DTD])
851   FP_GEN_DOCBOOK_XML
852   if $XmllintCmd --nonet --valid --noout conftest.xml ; then
853     AC_MSG_RESULT([ok])
854   else
855     AC_MSG_RESULT([failed])
856     AC_MSG_WARN([cannot find a DTD for DocBook XML V4.2, you will not be able to validate your documentation])
857     AC_MSG_WARN([check your XML_CATALOG_FILES environment variable and/or /etc/xml/catalog])
858   fi
859   rm -rf conftest*
860 fi
861 ])# FP_CHECK_DOCBOOK_DTD
862
863
864 # FP_GEN_FO
865 # ------------------
866 # Generates a formatting objects document in conftest.fo.
867 AC_DEFUN([FP_GEN_FO],
868 [rm -f conftest.fo
869 cat > conftest.fo << EOF
870 <?xml version="1.0"?>
871 <fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format">
872   <fo:layout-master-set>
873     <fo:simple-page-master master-name="blank">
874       <fo:region-body/>
875     </fo:simple-page-master>
876   </fo:layout-master-set>
877   <fo:page-sequence master-reference="blank">
878     <fo:flow flow-name="xsl-region-body">
879       <fo:block>
880         Test!
881       </fo:block>
882     </fo:flow>
883   </fo:page-sequence>
884 </fo:root>
885 EOF
886 ]) # FP_GEN_FO
887
888
889 # FP_PROG_FOP
890 # -----------
891 # Set the output variable 'FopCmd' to the first working 'fop' in the current
892 # 'PATH'. Note that /usr/bin/fop is broken in SuSE 9.1 (unpatched), so try
893 # /usr/share/fop/fop.sh in that case (or no 'fop'), too.
894 AC_DEFUN([FP_PROG_FOP],
895 [AC_PATH_PROGS([FopCmd1], [fop fop.sh])
896 if test -n "$FopCmd1"; then
897   AC_CACHE_CHECK([for $FopCmd1 usability], [fp_cv_fop_usability],
898     [FP_GEN_FO
899     if "$FopCmd1" -fo conftest.fo -ps conftest.ps > /dev/null 2>&1; then
900       fp_cv_fop_usability=yes
901     else
902       fp_cv_fop_usability=no
903     fi
904     rm -rf conftest*])
905   if test x"$fp_cv_fop_usability" = xyes; then
906      FopCmd=$FopCmd1
907   fi
908 fi
909 if test -z "$FopCmd"; then
910   AC_PATH_PROGS([FopCmd2], [fop.sh], , [/usr/share/fop])
911   FopCmd=$FopCmd2
912 fi
913 AC_SUBST([FopCmd])
914 ])# FP_PROG_FOP
915
916
917 # FP_PROG_HSTAGS
918 # ----------------
919 # Sets the output variable HstagsCmd to the full Haskell tags program path.
920 # HstagsCmd is empty if no such program could be found.
921 AC_DEFUN([FP_PROG_HSTAGS],
922 [AC_PATH_PROG([HstagsCmd], [hasktags])
923 if test -z "$HstagsCmd"; then
924   AC_MSG_WARN([cannot find hasktags in your PATH, you will not be able to build the tags])
925 fi
926 ])# FP_PROG_HSTAGS
927
928
929 # FP_PROG_GHC_PKG
930 # ----------------
931 # Try to find a ghc-pkg matching the ghc mentioned in the environment variable
932 # WithGhc. Sets the output variable GhcPkgCmd.
933 AC_DEFUN([FP_PROG_GHC_PKG],
934 [AC_CACHE_CHECK([for ghc-pkg matching $WithGhc], fp_cv_matching_ghc_pkg,
935 [
936 # If we are told to use ghc-stage2, then we're using an in-tree
937 # compiler. In this case, we just want ghc-pkg, not ghc-pkg-stage2,
938 # so we sed off -stage[0-9]$. However, if we are told to use
939 # ghc-6.12.1 then we want to use ghc-pkg-6.12.1, so we keep any
940 # other suffix.
941 fp_ghc_pkg_guess=`echo $WithGhc | sed -e 's/-stage@<:@0-9@:>@$//' -e 's,ghc\(@<:@^/\\@:>@*\)$,ghc-pkg\1,'`
942 if "$fp_ghc_pkg_guess" list > /dev/null 2>&1; then
943   fp_cv_matching_ghc_pkg=$fp_ghc_pkg_guess
944 else
945   AC_MSG_ERROR([Cannot find matching ghc-pkg])
946 fi])
947 GhcPkgCmd=$fp_cv_matching_ghc_pkg
948 AC_SUBST([GhcPkgCmd])
949 ])# FP_PROG_GHC_PKG
950
951
952 # FP_GCC_EXTRA_FLAGS
953 # ------------------
954 # Determine which extra flags we need to pass gcc when we invoke it
955 # to compile .hc code.
956 #
957 # Some OSs (Mandrake Linux, in particular) configure GCC with
958 # -momit-leaf-frame-pointer on by default. If this is the case, we
959 # need to turn it off for mangling to work. The test is currently a
960 # bit crude, using only the version number of gcc.
961
962 # -fwrapv is needed for gcc to emit well-behaved code in the presence of
963 # integer wrap around. (Trac #952)
964 #
965 # -fno-unit-at-a-time or -fno-toplevel-reoder is necessary to avoid gcc
966 # reordering things in the module and confusing the manger and/or splitter.
967 # (eg. Trac #1427)
968 #
969 # If gcc knows about the stack protector, turn it off.
970 # Otherwise the stack-smash handler gets triggered.
971 #
972 AC_DEFUN([FP_GCC_EXTRA_FLAGS],
973 [AC_REQUIRE([FP_HAVE_GCC])
974 AC_CACHE_CHECK([for extra options to pass gcc when compiling via C], [fp_cv_gcc_extra_opts],
975 [fp_cv_gcc_extra_opts=
976  FP_COMPARE_VERSIONS([$fp_cv_gcc_version], [-ge], [3.4],
977   [fp_cv_gcc_extra_opts="$fp_cv_gcc_extra_opts -fwrapv"],
978   [])
979  case $TargetPlatform in
980   i386-*|x86_64-*) 
981      FP_COMPARE_VERSIONS([$fp_cv_gcc_version], [-ge], [3.2],
982       [fp_cv_gcc_extra_opts="$fp_cv_gcc_extra_opts -mno-omit-leaf-frame-pointer"],
983       [])
984     FP_COMPARE_VERSIONS([$fp_cv_gcc_version], [-ge], [3.4],
985      [FP_COMPARE_VERSIONS([$fp_cv_gcc_version], [-ge], [4.2],
986        [fp_cv_gcc_extra_opts="$fp_cv_gcc_extra_opts -fno-toplevel-reorder"],
987        [fp_cv_gcc_extra_opts="$fp_cv_gcc_extra_opts -fno-unit-at-a-time"]
988      )],
989      [])
990   ;;
991   sparc-*-solaris2) 
992     FP_COMPARE_VERSIONS([$fp_cv_gcc_version], [-ge], [4.2],
993       [fp_cv_gcc_extra_opts="$fp_cv_gcc_extra_opts -fno-toplevel-reorder"],
994       [])
995   ;;
996  esac
997  echo 'int main(void) {return 0;}' > conftest.c
998  if $CC -c conftest.c -fno-stack-protector > /dev/null 2>&1
999  then
1000      fp_cv_gcc_extra_opts="$fp_cv_gcc_extra_opts -fno-stack-protector"
1001  fi
1002  rm conftest.c conftest.o
1003 ])
1004 AC_SUBST([GccExtraViaCOpts],$fp_cv_gcc_extra_opts)
1005 ])
1006
1007
1008 # FP_SETUP_PROJECT_VERSION
1009 # ---------------------
1010 AC_DEFUN([FP_SETUP_PROJECT_VERSION],
1011 [
1012 if test "$RELEASE" = "NO"; then
1013     AC_MSG_CHECKING([for GHC version date])
1014     if test -f VERSION_DATE; then
1015         PACKAGE_VERSION=${PACKAGE_VERSION}.`cat VERSION_DATE`
1016         AC_MSG_RESULT(given $PACKAGE_VERSION)
1017     elif test -d .git; then
1018         changequote(, )dnl
1019         ver_date=`git log -n 1 --date=short --pretty=format:%ci | sed "s/^.*\([0-9][0-9][0-9][0-9]\)-\([0-9][0-9]\)-\([0-9][0-9]\).*$/\1\2\3/"`
1020         if echo $ver_date | grep '^[0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9]$' 2>&1 >/dev/null; then true; else
1021         changequote([, ])dnl
1022                 AC_MSG_ERROR([failed to detect version date: check that git is in your path])
1023         fi
1024         PACKAGE_VERSION=${PACKAGE_VERSION}.$ver_date
1025         AC_MSG_RESULT(inferred $PACKAGE_VERSION)
1026     elif test -d _darcs; then
1027         # TODO: Remove this branch after conversion to Git
1028         changequote(, )dnl
1029         ver_date=`darcs changes --quiet --no-summary --xml | head -500 | grep 'date=' | sed "s/^.*date='\([0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9]\).*$/\1/g" | ${SortCmd} -n | tail -1`
1030         if echo $ver_date | grep '^[0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9]$' 2>&1 >/dev/null; then true; else
1031         changequote([, ])dnl
1032                 AC_MSG_ERROR([failed to detect version date: check that darcs is in your path])
1033         fi
1034         PACKAGE_VERSION=${PACKAGE_VERSION}.$ver_date
1035         AC_MSG_RESULT(inferred $PACKAGE_VERSION)
1036     elif test -f VERSION; then
1037         PACKAGE_VERSION=`cat VERSION`
1038         AC_MSG_RESULT(given $PACKAGE_VERSION)
1039     else
1040         AC_MSG_WARN([cannot determine snapshot version: no .git or _darcs directory and no VERSION file])
1041     fi
1042 fi
1043
1044 # Some renamings
1045 AC_SUBST([ProjectName], [$PACKAGE_NAME])
1046 AC_SUBST([ProjectVersion], [$PACKAGE_VERSION])
1047
1048 # Split PACKAGE_VERSION into (possibly empty) parts
1049 VERSION_MAJOR=`echo $PACKAGE_VERSION | sed 's/^\(@<:@^.@:>@*\)\(\.\{0,1\}\(.*\)\)$/\1'/`
1050 VERSION_TMP=`echo $PACKAGE_VERSION | sed 's/^\(@<:@^.@:>@*\)\(\.\{0,1\}\(.*\)\)$/\3'/`
1051 VERSION_MINOR=`echo $VERSION_TMP | sed 's/^\(@<:@^.@:>@*\)\(\.\{0,1\}\(.*\)\)$/\1'/`
1052 ProjectPatchLevel=`echo $VERSION_TMP | sed 's/^\(@<:@^.@:>@*\)\(\.\{0,1\}\(.*\)\)$/\3'/`
1053
1054 # Calculate project version as an integer, using 2 digits for minor version
1055 case $VERSION_MINOR in
1056   ?) ProjectVersionInt=${VERSION_MAJOR}0${VERSION_MINOR} ;;
1057   ??) ProjectVersionInt=${VERSION_MAJOR}${VERSION_MINOR} ;;
1058   *) AC_MSG_ERROR([bad minor version in $PACKAGE_VERSION]) ;;
1059 esac
1060 AC_SUBST([ProjectVersionInt])
1061
1062 # The project patchlevel is zero unless stated otherwise
1063 test -z "$ProjectPatchLevel" && ProjectPatchLevel=0
1064
1065 # Remove dots from the patch level; this allows us to have versions like 6.4.1.20050508
1066 ProjectPatchLevel=`echo $ProjectPatchLevel | sed 's/\.//'`
1067
1068 AC_SUBST([ProjectPatchLevel])
1069 ])# FP_SETUP_PROJECT_VERSION
1070
1071
1072 # Check for a working timer_create().  We need a pretty detailed check
1073 # here, because there exist partially-working implementations of
1074 # timer_create() in certain versions of Linux (see bug #1933).
1075 #
1076 AC_DEFUN([FP_CHECK_TIMER_CREATE],
1077   [AC_CACHE_CHECK([for a working timer_create(CLOCK_REALTIME)], 
1078     [fptools_cv_timer_create_works],
1079     [AC_TRY_RUN([
1080 #include <stdio.h>
1081 #ifdef HAVE_STDLIB_H
1082 #include <stdlib.h>
1083 #endif
1084 #ifdef HAVE_TIME_H
1085 #include <time.h>
1086 #endif
1087 #ifdef HAVE_SIGNAL_H
1088 #include <signal.h>
1089 #endif
1090 #ifdef HAVE_UNISTD_H
1091 #include <unistd.h>
1092 #endif
1093
1094 static volatile int tock = 0;
1095 static void handler(int i)
1096 {
1097    tock = 1;
1098 }
1099
1100 static void timeout(int i)
1101 {
1102   // timer_settime() has been known to hang, so just in case
1103   // we install a 1-second timeout (see #2257)
1104   exit(99);
1105 }
1106
1107 int main(int argc, char *argv[])
1108 {
1109
1110     struct sigevent ev;
1111     timer_t timer;
1112     struct itimerspec it;
1113     struct sigaction action;
1114     int m,n,count = 0;
1115
1116     ev.sigev_notify = SIGEV_SIGNAL;
1117     ev.sigev_signo  = SIGVTALRM;
1118
1119     action.sa_handler = handler;
1120     action.sa_flags = 0;
1121     sigemptyset(&action.sa_mask);
1122     if (sigaction(SIGVTALRM, &action, NULL) == -1) {
1123         fprintf(stderr,"SIGVTALRM problem\n");
1124         exit(3);
1125     }
1126
1127     action.sa_handler = timeout;
1128     action.sa_flags = 0;
1129     sigemptyset(&action.sa_mask);
1130     if (sigaction(SIGALRM, &action, NULL) == -1) {
1131       fprintf(stderr,"SIGALRM problem\n");
1132       exit(3);
1133     }
1134     alarm(1);
1135
1136     if (timer_create(CLOCK_PROCESS_CPUTIME_ID, &ev, &timer) != 0) {
1137         fprintf(stderr,"No CLOCK_PROCESS_CPUTIME_ID timer\n");
1138        exit(1);
1139     }
1140
1141     it.it_value.tv_sec = 0;
1142     it.it_value.tv_nsec = 1;
1143     it.it_interval = it.it_value;
1144     if (timer_settime(timer, 0, &it, NULL) != 0) {
1145         fprintf(stderr,"settime problem\n");
1146         exit(4);
1147     }
1148
1149     tock = 0;
1150
1151     for(n = 3; n < 20000; n++){
1152         for(m = 2; m <= n/2; m++){
1153             if (!(n%m)) count++;
1154             if (tock) goto out;
1155         }
1156     }
1157 out:
1158
1159     if (!tock) {
1160         fprintf(stderr,"no CLOCK_PROCESS_CPUTIME_ID signal\n");
1161         exit(5);
1162     }
1163
1164     timer_delete(timer);
1165
1166     if (timer_create(CLOCK_REALTIME, &ev, &timer) != 0) {
1167         fprintf(stderr,"No CLOCK_REALTIME timer\n");
1168         exit(2);
1169     }
1170
1171     it.it_value.tv_sec = 0;
1172     it.it_value.tv_nsec = 1000000;
1173     it.it_interval = it.it_value;
1174     if (timer_settime(timer, 0, &it, NULL) != 0) {
1175         fprintf(stderr,"settime problem\n");
1176         exit(4);
1177     }
1178
1179     tock = 0;
1180
1181     usleep(3000);
1182
1183     if (!tock) {
1184         fprintf(stderr,"no CLOCK_REALTIME signal\n");
1185         exit(5);
1186     }
1187
1188     timer_delete(timer);
1189
1190     exit(0);
1191 }
1192      ],
1193      [fptools_cv_timer_create_works=yes],
1194      [fptools_cv_timer_create_works=no])
1195   ])
1196 case $fptools_cv_timer_create_works in
1197     yes) AC_DEFINE([USE_TIMER_CREATE], 1, 
1198                    [Define to 1 if we can use timer_create(CLOCK_PROCESS_CPUTIME_ID,...)]);;
1199 esac
1200 ])
1201
1202 # FP_ARG_GMP
1203 # -------------
1204 AC_DEFUN([FP_ARG_GMP],
1205 [
1206 AC_ARG_WITH([gmp-includes],
1207   [AC_HELP_STRING([--with-gmp-includes],
1208     [directory containing gmp.h])],
1209     [gmp_includes=$withval],
1210     [gmp_includes=NONE])
1211
1212 AC_ARG_WITH([gmp-libraries],
1213   [AC_HELP_STRING([--with-gmp-libraries],
1214     [directory containing gmp library])],
1215     [gmp_libraries=$withval],
1216     [gmp_libraries=NONE])
1217 ])# FP_ARG_GMP
1218
1219 AC_DEFUN([CHECK_GMP],
1220 [AC_REQUIRE([AC_PROG_CPP])
1221 AC_REQUIRE([AC_PROG_CC])
1222 ])
1223
1224 # FP_CHECK_MACOSX_DEPLOYMENT_TARGET
1225 # ---------------------------------
1226 AC_DEFUN([FP_CHECK_MACOSX_DEPLOYMENT_TARGET],
1227 [
1228 if test "x$TargetOS_CPP-$TargetVendor_CPP" = "xdarwin-apple"; then
1229   AC_MSG_CHECKING([Mac OS X deployment target])
1230   case $FP_MACOSX_DEPLOYMENT_TARGET in
1231     none)  ;;
1232     10.4)  MACOSX_DEPLOYMENT_VERSION=10.4
1233            MACOSX_DEPLOYMENT_SDK=/Developer/SDKs/MacOSX10.4u.sdk
1234            ;;
1235     10.4u) MACOSX_DEPLOYMENT_VERSION=10.4
1236            MACOSX_DEPLOYMENT_SDK=/Developer/SDKs/MacOSX10.4u.sdk
1237            ;;
1238     *)     MACOSX_DEPLOYMENT_VERSION=$FP_MACOSX_DEPLOYMENT_TARGET
1239            MACOSX_DEPLOYMENT_SDK=/Developer/SDKs/MacOSX${FP_MACOSX_DEPLOYMENT_TARGET}.sdk
1240            ;;
1241   esac
1242   if test "x$FP_MACOSX_DEPLOYMENT_TARGET" = "xnone"; then
1243     AC_MSG_RESULT(none)
1244   else
1245     if test ! -d $MACOSX_DEPLOYMENT_SDK; then
1246       AC_MSG_ERROR([Unknown deployment target $FP_MACOSX_DEPLOYMENT_TARGET])
1247     fi
1248     AC_MSG_RESULT([${MACOSX_DEPLOYMENT_VERSION} (${MACOSX_DEPLOYMENT_SDK})])
1249   fi
1250 fi
1251 ])
1252
1253 # --------------------------------------------------------------
1254 # Calculate absolute path to build tree
1255 # --------------------------------------------------------------
1256
1257 AC_DEFUN([FP_FIND_ROOT],[
1258 AC_MSG_CHECKING(for path to top of build tree)
1259
1260 dnl This would be
1261 dnl     make -C utils/ghc-pwd clean && make -C utils/ghc-pwd
1262 dnl except we don't want to have to know what make is called. Sigh.
1263 if test ! -f utils/ghc-pwd/ghc-pwd && test ! -f utils/ghc-pwd/ghc-pwd.exe; then
1264   cd utils/ghc-pwd
1265   rm -f *.o
1266   rm -f *.hi
1267   rm -f ghc-pwd
1268   rm -f ghc-pwd.exe
1269   "$WithGhc" -v0 --make ghc-pwd -o ghc-pwd
1270   cd ../..
1271 fi
1272
1273 hardtop=`utils/ghc-pwd/ghc-pwd`
1274
1275 if ! test -d "$hardtop"; then
1276   AC_MSG_ERROR([cannot determine current directory])
1277 fi   
1278
1279 dnl Remove common automounter nonsense
1280 dnl
1281 hardtop=`echo $hardtop | sed 's|^/tmp_mnt.*\(/local/.*\)$|\1|' | sed 's|^/tmp_mnt/|/|'`
1282
1283 AC_SUBST(hardtop)
1284
1285 AC_MSG_RESULT(${hardtop})
1286
1287 # We don't support building in directories with spaces.
1288 case "$hardtop" in
1289   *' '*) AC_MSG_ERROR([
1290    The build system does not support building in a directory containing
1291    space characters.  Suggestion: move the build tree somewhere else.])
1292  ;;
1293 esac
1294 ])
1295
1296 # GHC_CONVERT_CPU(cpu, target_var)
1297 # --------------------------------
1298 # converts cpu from gnu to ghc naming, and assigns the result to $target_var
1299 AC_DEFUN([GHC_CONVERT_CPU],[
1300 case "$1" in
1301   alpha*)
1302     $2="alpha"
1303     ;;
1304   arm*)
1305     $2="arm"
1306     ;;
1307   hppa1.1*)
1308     $2="hppa1_1"
1309     ;;
1310   hppa*)
1311     $2="hppa"
1312     ;;
1313   i386)
1314     $2="i386"
1315     ;;
1316   ia64)
1317     $2="ia64"
1318     ;;
1319   m68k*)
1320     $2="m68k"
1321     ;;
1322   mipseb*)
1323     $2="mipseb"
1324     ;;
1325   mipsel*)
1326     $2="mipsel"
1327     ;;
1328   mips*)
1329     $2="mips"
1330     ;;
1331   powerpc64*)
1332     $2="powerpc64"
1333     ;;
1334   powerpc*)
1335     $2="powerpc"
1336     ;;
1337   rs6000)
1338     $2="rs6000"
1339     ;;
1340   s390*)
1341     $2="s390"
1342     ;;
1343   sparc64*)
1344     $2="sparc64"
1345     ;;
1346   sparc*)
1347     $2="sparc"
1348     ;;
1349   vax)
1350     $2="vax"
1351     ;;
1352   x86_64)
1353     $2="x86_64"
1354     ;;
1355   *)
1356     echo "Unknown CPU $1"
1357     exit 1
1358     ;;
1359   esac
1360 ])
1361
1362 # GHC_CONVERT_VENDOR(vendor, target_var)
1363 # --------------------------------
1364 # converts vendor from gnu to ghc naming, and assigns the result to $target_var
1365 AC_DEFUN([GHC_CONVERT_VENDOR],[
1366 $2="$1"
1367 ])
1368
1369 # GHC_CONVERT_OS(os, target_var)
1370 # --------------------------------
1371 # converts os from gnu to ghc naming, and assigns the result to $target_var
1372 AC_DEFUN([GHC_CONVERT_OS],[
1373 case "$1" in
1374   linux-*|linux)
1375     $2="linux"
1376     ;;
1377   # As far as I'm aware, none of these have relevant variants
1378   freebsd|netbsd|openbsd|dragonfly|osf1|osf3|hpux|linuxaout|kfreebsdgnu|freebsd2|solaris2|cygwin32|mingw32|darwin|gnu|nextstep2|nextstep3|sunos4|ultrix|irix|aix|haiku)
1379     $2="$1"
1380     ;;
1381   *)
1382     echo "Unknown OS $1"
1383     exit 1
1384     ;;
1385   esac
1386 ])
1387
1388 # LIBRARY_VERSION(lib)
1389 # --------------------------------
1390 # Gets the version number of a library.
1391 # If $1 is ghc-prim, then we define LIBRARY_ghc_prim_VERSION as 1.2.3
1392 AC_DEFUN([LIBRARY_VERSION],[
1393 LIBRARY_[]translit([$1], [-], [_])[]_VERSION=`grep -i "^version:" libraries/$1/$1.cabal | sed "s/.* //"`
1394 AC_SUBST(LIBRARY_[]translit([$1], [-], [_])[]_VERSION)
1395 ])
1396
1397 # LocalWords:  fi