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