fix typo
[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_FLOAT_WORD_ORDER_BIGENDIAN
8 # ----------------------------------
9 # Little endian Arm on Linux with some ABIs has big endian word order
10 # in doubles. Define FLOAT_WORDS_BIGENDIAN if this is the case.
11 AC_DEFUN([FPTOOLS_FLOAT_WORD_ORDER_BIGENDIAN],
12   [AC_CACHE_CHECK([whether float word order is big endian], [fptools_cv_float_word_order_bigendian],
13     [AC_COMPILE_IFELSE(
14       [AC_LANG_PROGRAM(
15         [#include <endian.h>],
16         [#if defined(__FLOAT_WORD_ORDER) && __FLOAT_WORD_ORDER == BIG_ENDIAN
17              return 0;
18          #else
19              not float word order big endian
20          #endif]
21       )],
22       [fptools_cv_float_word_order_bigendian=yes],
23       [fptools_cv_float_word_order_bigendian=no])
24     ])
25   case $fptools_cv_float_word_order_bigendian in
26       yes)
27           AC_DEFINE([FLOAT_WORDS_BIGENDIAN], 1,
28           [Define to 1 if your processor stores words of floats with
29            the most significant byte first]) ;;
30   esac
31 ])
32
33
34 # FP_EVAL_STDERR(COMMAND)
35 # -----------------------
36 # Eval COMMAND, save its stderr (without lines resulting from shell tracing)
37 # into the file conftest.err and the exit status in the variable fp_status.
38 AC_DEFUN([FP_EVAL_STDERR],
39 [{ (eval $1) 2>conftest.er1
40   fp_status=$?
41   grep -v '^ *+' conftest.er1 >conftest.err
42   rm -f conftest.er1
43   (exit $fp_status); }[]dnl
44 ])# FP_EVAL_STDERR
45
46
47 # FP_CHECK_FLAG(FLAG, [ACTION-IF-SUPPORTED], [ACTION-IF-NOT-SUPPORTED])
48 # ---------------------------------------------------------------------
49 # Check to see whether the compiler for the current language supports a
50 # particular option.
51 #
52 # Implementation note: When given an unkown option, GCC issues an warning on
53 # stderr only, but returns an exit value of 0 nevertheless. Consequently we have
54 # to check stderr *and* the exit value.
55 #
56 # Used by ghc.
57 AC_DEFUN([FP_CHECK_FLAG],
58 [AC_LANG_COMPILER_REQUIRE()dnl
59 AC_LANG_CASE([C],          [fp_compiler="$CC"  m4_pushdef([fp_Flags], [CFLAGS])],
60              [C++],        [fp_compiler="$CXX" m4_pushdef([fp_Flags], [CXXFLAGS])],
61              [Fortran 77], [fp_compiler="$F77" m4_pushdef([fp_Flags], [FFLAGS])])
62 m4_pushdef([fp_Cache], [fp_cv_[]fp_Flags[]AS_TR_SH([$1])])[]dnl
63 AC_CACHE_CHECK([whether $fp_compiler accepts $1], [fp_Cache],
64 [AC_LANG_CONFTEST([AC_LANG_PROGRAM()])
65 fp_save_flags="$fp_Flags"
66 fp_Flags="$fp_Flags $1"
67 fp_Cache=no
68 if FP_EVAL_STDERR([$ac_compile conftest.$ac_ext]) >/dev/null; then
69   test -s conftest.err || fp_Cache=yes
70 fi
71 fp_Flags="$fp_save_flags"
72 rm -f conftest.err conftest.$ac_ext])
73 AS_IF([test $fp_Cache = yes], [$2], [$3])[]dnl
74 m4_popdef([fp_Cache])[]dnl
75 m4_popdef([fp_Flags])[]dnl
76 ])# FP_CHECK_FLAG
77
78
79 # FP_PROG_CONTEXT_DIFF
80 # --------------------
81 # Figure out how to do context diffs. Sets the output variable ContextDiffCmd.
82 #
83 # Note: NeXTStep thinks diff'ing a file against itself is "trouble".
84 #
85 # Used by ghc, glafp-utils/ltx, and glafp-utils/runstdtest.
86 AC_DEFUN([FP_PROG_CONTEXT_DIFF],
87 [AC_CACHE_CHECK([for a working context diff], [fp_cv_context_diff],
88 [echo foo > conftest1
89 echo foo > conftest2
90 fp_cv_context_diff=no
91 for fp_var in '-C 1' '-c1'
92 do
93   if diff $fp_var conftest1 conftest2 > /dev/null 2>&1; then
94     fp_cv_context_diff="diff $fp_var"
95     break
96   fi
97 done])
98 if test x"$fp_cv_context_diff" = xno; then
99    AC_MSG_ERROR([cannot figure out how to do context diffs])
100 fi
101 AC_SUBST(ContextDiffCmd, [$fp_cv_context_diff])
102 ])# FP_PROG_CONTEXT_DIFF
103
104
105 # FP_COMPUTE_INT(EXPRESSION, VARIABLE, INCLUDES, IF-FAILS)
106 # --------------------------------------------------------
107 # Assign VARIABLE the value of the compile-time EXPRESSION using INCLUDES for
108 # compilation. Execute IF-FAILS when unable to determine the value. Works for
109 # cross-compilation, too.
110 #
111 # Implementation note: We are lazy and use an internal autoconf macro, but it
112 # is supported in autoconf versions 2.50 up to the actual 2.57, so there is
113 # little risk.
114 AC_DEFUN([FP_COMPUTE_INT],
115 [_AC_COMPUTE_INT([$1], [$2], [$3], [$4])[]dnl
116 ])# FP_COMPUTE_INT
117
118
119 # FP_CHECK_ALIGNMENT(TYPE, [IGNORED], [INCLUDES = DEFAULT-INCLUDES])
120 # ------------------------------------------------------------------
121 # A variation of AC_CHECK_SIZEOF for computing the alignment restrictions of a
122 # given type. Defines ALIGNMENT_TYPE.
123 AC_DEFUN([FP_CHECK_ALIGNMENT],
124 [AS_LITERAL_IF([$1], [],
125                [AC_FATAL([$0: requires literal arguments])])[]dnl
126 AC_CHECK_TYPE([$1], [], [], [$3])[]dnl
127 m4_pushdef([fp_Cache], [AS_TR_SH([fp_cv_alignment_$1])])[]dnl
128 AC_CACHE_CHECK([alignment of $1], [fp_Cache],
129 [if test "$AS_TR_SH([ac_cv_type_$1])" = yes; then
130   FP_COMPUTE_INT([(long) (&((struct { char c; $1 ty; } *)0)->ty)],
131                  [fp_Cache],
132                  [AC_INCLUDES_DEFAULT([$3])],
133                  [AC_MSG_ERROR([cannot compute alignment ($1)
134 See `config.log' for more details.], [77])])
135 else
136   fp_Cache=0
137 fi])[]dnl
138 AC_DEFINE_UNQUOTED(AS_TR_CPP(alignment_$1), $fp_Cache, [The alignment of a `$1'.])[]dnl
139 m4_popdef([fp_Cache])[]dnl
140 ])# FP_CHECK_ALIGNMENT
141
142
143 # FP_LEADING_UNDERSCORE
144 # ---------------------
145 # Test for determining whether symbol names have a leading underscore. We assume
146 # that they _haven't_ if anything goes wrong. Sets the output variable
147 # LeadingUnderscore to YES or NO and defines LEADING_UNDERSCORE correspondingly.
148 #
149 # Some nlist implementations seem to try to be compatible by ignoring a leading
150 # underscore sometimes (eg. FreeBSD). We therefore have to work around this by
151 # checking for *no* leading underscore first. Sigh.  --SDM
152 #
153 # Similarly on OpenBSD, but this test doesn't help. -- dons
154 AC_DEFUN([FP_LEADING_UNDERSCORE],
155 [AC_CHECK_LIB([elf], [nlist], [LIBS="-lelf $LIBS"])
156 AC_CACHE_CHECK([leading underscore in symbol names], [fptools_cv_leading_underscore], [
157 # Hack!: nlist() under Digital UNIX insist on there being an _,
158 # but symbol table listings shows none. What is going on here?!?
159 #
160 # Another hack: cygwin doesn't come with nlist.h , so we hardwire
161 # the underscoredness of that "platform"
162 case $HostPlatform in
163 *openbsd*) # x86 openbsd is ELF from 3.4 >, meaning no leading uscore
164   case $build in
165     i386-*2\.@<:@0-9@:>@ | i386-*3\.@<:@0-3@:>@ ) fptools_cv_leading_underscore=yes ;;
166     *) fptools_cv_leading_underscore=no ;;
167   esac ;;
168 alpha-dec-osf*) fptools_cv_leading_underscore=no;;
169 *cygwin32) fptools_cv_leading_underscore=yes;;
170 *mingw32) fptools_cv_leading_underscore=yes;;
171
172     # HACK: Apple doesn't seem to provide nlist in the 64-bit-libraries
173 x86_64-apple-darwin*) fptools_cv_leading_underscore=yes;;
174
175 *) AC_RUN_IFELSE([AC_LANG_SOURCE([[#ifdef HAVE_NLIST_H
176 #include <nlist.h>
177 struct nlist xYzzY1[] = {{"xYzzY1", 0},{0}};
178 struct nlist xYzzY2[] = {{"_xYzzY2", 0},{0}};
179 #endif
180
181 int main(argc, argv)
182 int argc;
183 char **argv;
184 {
185 #ifdef HAVE_NLIST_H
186     if(nlist(argv[0], xYzzY1) == 0 && xYzzY1[0].n_value != 0)
187         exit(1);
188     if(nlist(argv[0], xYzzY2) == 0 && xYzzY2[0].n_value != 0)
189         exit(0);
190 #endif
191     exit(1);
192 }]])],[fptools_cv_leading_underscore=yes],[fptools_cv_leading_underscore=no],[fptools_cv_leading_underscore=no])
193 ;;
194 esac]);
195 AC_SUBST([LeadingUnderscore], [`echo $fptools_cv_leading_underscore | sed 'y/yesno/YESNO/'`])
196 if test x"$fptools_cv_leading_underscore" = xyes; then
197    AC_DEFINE([LEADING_UNDERSCORE], [1], [Define to 1 if C symbols have a leading underscore added by the compiler.])
198 fi])# FP_LEADING_UNDERSCORE
199
200
201 # FP_COMPARE_VERSIONS(VERSION1, TEST, VERSION2, [ACTION-IF-TRUE], [ACTION-IF-FALSE])
202 # ----------------------------------------------------------------------------------
203 # Compare dotted version numbers VERSION1 and VERSION2 lexicographically according
204 # to TEST (one of -eq, -ne, -lt, -le, -gt, or -ge).
205 AC_DEFUN([FP_COMPARE_VERSIONS],
206 [fp_version1=$1; fp_version2=$3
207 fp_save_IFS=$IFS; IFS='.'
208 while test x"$fp_version1" != x || test x"$fp_version2" != x
209 do
210
211   set dummy $fp_version1; shift
212   fp_num1=""
213   test $[@%:@] = 0 || { fp_num1="[$]1"; shift; }
214   test x"$fp_num1" = x && fp_num1="0"
215   fp_version1="[$]*"
216
217   set dummy $fp_version2; shift
218   fp_num2=""
219   test $[@%:@] = 0 || { fp_num2="[$]1"; shift; }
220   test x"$fp_num2" = x && fp_num2="0"
221   fp_version2="[$]*"
222
223   test "$fp_num1" = "$fp_num2" || break;
224 done
225 IFS=$fp_save_IFS
226 AS_IF([test "$fp_num1" $2 "$fp_num2"], [$4], [$5])[]dnl
227 ])# FP_COMPARE_VERSIONS
228
229
230 dnl
231 dnl Check for GreenCard and version.
232 dnl
233 AC_DEFUN([FPTOOLS_GREENCARD],
234 [
235 AC_PATH_PROG(GreenCardCmd,greencard)
236 AC_CACHE_CHECK([for version of greencard], fptools_cv_greencard_version,
237 changequote(, )dnl
238 [if test x"$GreenCardCmd" != x; then
239    fptools_cv_greencard_version="`$GreenCardCmd --version |
240                           grep 'version' | sed -e 's/greencard. version \([^ ]*\).*/\1/g'`"
241 else
242    fptools_cv_greencard_version=""
243 fi
244 changequote([, ])dnl
245 ])
246 FP_COMPARE_VERSIONS([$fptools_cv_greencard_version],[-lt],[$1],
247   [AC_MSG_ERROR([greencard version $1 or later is required (found '$fptools_cv_greencard_version')])])[]dnl
248 GreenCardVersion=$fptools_cv_greencard_version
249 AC_SUBST(GreenCardVersion)
250 ])
251
252 dnl
253 dnl Check for Happy and version.  If we're building GHC, then we need
254 dnl at least Happy version 1.14.  If there's no installed Happy, we look
255 dnl for a happy source tree and point the build system at that instead.
256 dnl
257 AC_DEFUN([FPTOOLS_HAPPY],
258 [AC_PATH_PROG(HappyCmd,happy,)
259 AC_CACHE_CHECK([for version of happy], fptools_cv_happy_version,
260 changequote(, )dnl
261 [if test x"$HappyCmd" != x; then
262    fptools_cv_happy_version="`$HappyCmd -v |
263                           grep 'Happy Version' | sed -e 's/Happy Version \([^ ]*\).*/\1/g'`" ;
264 else
265    fptools_cv_happy_version="";
266 fi;
267 changequote([, ])dnl
268 ])
269 if test ! -f compiler/parser/Parser.hs || test ! -f compiler/main/ParsePkgConf.hs || test ! -f compiler/cmm/CmmParse.hs || test ! -f compiler/parser/ParserCore.hs
270 then
271     FP_COMPARE_VERSIONS([$fptools_cv_happy_version],[-lt],[1.15],
272       [AC_MSG_ERROR([Happy version 1.15 or later is required to compile GHC.])])[]dnl
273 fi
274 HappyVersion=$fptools_cv_happy_version;
275 AC_SUBST(HappyVersion)
276 ])
277
278 dnl
279 dnl Check for Haddock and version.  If there's no installed Haddock, we look
280 dnl for a haddock source tree and point the build system at that instead.
281 dnl
282 AC_DEFUN([FPTOOLS_HADDOCK],
283 [AC_PATH_PROG(HaddockCmd,haddock,)
284 dnl Darn, I forgot to make Haddock print out its version number when
285 dnl invoked with -v.  We could try generating some HTML and grepping
286 dnl through that to find the version number, but I think we'll make
287 dnl do without it for now.
288 ])
289
290 dnl
291 dnl Check for Alex and version.  If we're building GHC, then we need
292 dnl at least Alex version 2.0.1.
293 dnl
294 AC_DEFUN([FPTOOLS_ALEX],
295 [
296 AC_PATH_PROG(AlexCmd,alex,)
297 AC_CACHE_CHECK([for version of alex], fptools_cv_alex_version,
298 changequote(, )dnl
299 [if test x"$AlexCmd" != x; then
300    fptools_cv_alex_version="`$AlexCmd -v |
301                           grep 'Alex [Vv]ersion' | sed -e 's/Alex [Vv]ersion \([0-9\.]*\).*/\1/g'`" ;
302 else
303    fptools_cv_alex_version="";
304 fi;
305 changequote([, ])dnl
306 ])
307 if test ! -f compiler/cmm/CmmLex.hs || test ! -f compiler/parser/Lexer.hs
308 then
309     FP_COMPARE_VERSIONS([$fptools_cv_alex_version],[-lt],[2.0.1],
310       [AC_MSG_ERROR([Alex version 2.0.1 or later is required to compile GHC.])])[]dnl
311 fi
312 AlexVersion=$fptools_cv_alex_version;
313 AC_SUBST(AlexVersion)
314 ])
315
316
317 # FP_PROG_LD
318 # ----------
319 # Sets the output variable LdCmd to the (non-Cygwin version of the) full path
320 # of ld. Exits if no ld can be found
321 AC_DEFUN([FP_PROG_LD],
322 [
323 if test -z "$1"
324 then
325   AC_PATH_PROG([fp_prog_ld_raw], [ld])
326   if test -z "$fp_prog_ld_raw"; then
327     AC_MSG_ERROR([cannot find ld in your PATH, no idea how to link])
328   fi
329   LdCmd=$fp_prog_ld_raw
330   case $HostPlatform in
331     *mingw32) if test x${OSTYPE} != xmsys; then
332               LdCmd="`cygpath -w ${fp_prog_ld_raw} | sed -e 's@\\\\@/@g'`"
333                 AC_MSG_NOTICE([normalized ld command to $LdCmd])
334               fi
335             # Insist on >= ld-2.15.x, since earlier versions doesn't handle
336             # the generation of relocatable object files with large amounts
337             # of relocations correctly. (cf. HSbase.o splittage-hack)
338             fp_prog_ld_version=`${LdCmd} --version | sed -n '/GNU ld/p' | tr -cd 0-9 | cut -b1-3`
339             FP_COMPARE_VERSIONS([$fp_prog_ld_version],[-lt],[214],
340                                   [AC_MSG_ERROR([GNU ld version later than 2.14 required to compile GHC on Windows.])])[]dnl
341               ;;
342   esac
343 else
344   LdCmd="$1"
345 fi
346 AC_SUBST([LdCmd])
347 ])# FP_PROG_LD
348
349
350 # FP_PROG_LD_X
351 # ------------
352 # Sets the output variable LdXFlag to -x if ld supports this flag, otherwise the
353 # variable's value is empty.
354 AC_DEFUN([FP_PROG_LD_X],
355 [AC_REQUIRE([FP_PROG_LD])
356 AC_CACHE_CHECK([whether ld understands -x], [fp_cv_ld_x],
357 [echo 'foo() {}' > conftest.c
358 ${CC-cc} -c conftest.c
359 if ${LdCmd} -r -x -o conftest2.o conftest.o > /dev/null 2>&1; then
360    fp_cv_ld_x=yes
361 else
362    fp_cv_ld_x=no
363 fi
364 rm -rf conftest*])
365 if test "$fp_cv_ld_x" = yes; then
366   LdXFlag=-x
367 else
368   LdXFlag=
369 fi
370 AC_SUBST([LdXFlag])
371 ])# FP_PROG_LD_X
372
373
374 # FP_PROG_LD_IS_GNU
375 # -----------------
376 # Sets the output variable LdIsGNULd to YES or NO, depending on whether it is
377 # GNU ld or not.
378 AC_DEFUN([FP_PROG_LD_IS_GNU],
379 [AC_REQUIRE([FP_PROG_LD])
380 AC_CACHE_CHECK([whether ld is GNU ld], [fp_cv_gnu_ld],
381 [if ${LdCmd} --version 2> /dev/null | grep "GNU" > /dev/null 2>&1; then
382   fp_cv_gnu_ld=yes
383 else
384   fp_cv_gnu_ld=no
385 fi])
386 AC_SUBST([LdIsGNULd], [`echo $fp_cv_gnu_ld | sed 'y/yesno/YESNO/'`])
387 ])# FP_PROG_LD_IS_GNU
388
389
390 # FP_PROG_AR
391 # ----------
392 # Sets fp_prog_ar_raw to the full path of ar and fp_prog_ar to a non-Cygwin
393 # version of it. Exits if no ar can be found
394 AC_DEFUN([FP_PROG_AR],
395 [AC_PATH_PROG([fp_prog_ar_raw], [ar])
396 if test -z "$fp_prog_ar_raw"; then
397   AC_MSG_ERROR([cannot find ar in your PATH, no idea how to make a library])
398 fi
399 fp_prog_ar=$fp_prog_ar_raw
400 case $HostPlatform in
401   *mingw32) if test x${OSTYPE} != xmsys; then
402               fp_prog_ar="`cygpath -w ${fp_prog_ar_raw} | sed -e 's@\\\\@/@g'`"
403               AC_MSG_NOTICE([normalized ar command to $fp_prog_ar])
404             fi
405             ;;
406 esac
407 ])# FP_PROG_AR
408
409
410 # FP_PROG_AR_IS_GNU
411 # -----------------
412 # Sets fp_prog_ar_is_gnu to yes or no, depending on whether it is GNU ar or not.
413 AC_DEFUN([FP_PROG_AR_IS_GNU],
414 [AC_REQUIRE([FP_PROG_AR])
415 AC_CACHE_CHECK([whether $fp_prog_ar_raw is GNU ar], [fp_cv_prog_ar_is_gnu],
416 [if $fp_prog_ar_raw --version 2> /dev/null | grep "GNU" > /dev/null 2>&1; then
417   fp_cv_prog_ar_is_gnu=yes
418 else
419   fp_cv_prog_ar_is_gnu=no
420 fi])
421 fp_prog_ar_is_gnu=$fp_cv_prog_ar_is_gnu
422 ])# FP_PROG_AR_IS_GNU
423
424
425 # FP_PROG_AR_ARGS
426 # ---------------
427 # Sets fp_prog_ar_args to the arguments for ar and the output variable ArCmd
428 # to a non-Cygwin invocation of ar including these arguments.
429 AC_DEFUN([FP_PROG_AR_ARGS],
430 [AC_REQUIRE([FP_PROG_AR_IS_GNU])
431 AC_CACHE_CHECK([for ar arguments], [fp_cv_prog_ar_args],
432 [
433 # GNU ar needs special treatment: it appears to have problems with
434 # object files with the same name if you use the 's' modifier, but
435 # simple 'ar q' works fine, and doesn't need a separate ranlib.
436 if test $fp_prog_ar_is_gnu = yes; then
437   fp_cv_prog_ar_args="q"
438 else
439   touch conftest.dummy
440   for fp_var in clqsZ clqs cqs clq cq ; do
441      rm -f conftest.a
442      if $fp_prog_ar_raw $fp_var conftest.a conftest.dummy > /dev/null 2> /dev/null; then
443         fp_cv_prog_ar_args=$fp_var
444         break
445      fi
446   done
447   rm -f conftest*
448   if test -z "$fp_cv_prog_ar_args"; then
449     AC_MSG_ERROR([cannot figure out how to use your $fp_prog_ar_raw])
450   fi
451 fi])
452 fp_prog_ar_args=$fp_cv_prog_ar_args
453 AC_SUBST([ArCmd], ["$fp_prog_ar $fp_prog_ar_args"])
454
455 ])# FP_PROG_AR_ARGS
456
457
458 # FP_PROG_AR_NEEDS_RANLIB
459 # -----------------------
460 # Sets the output variable RANLIB to "ranlib" if it is needed and found,
461 # to ":" otherwise.
462 AC_DEFUN([FP_PROG_AR_NEEDS_RANLIB],
463 [AC_REQUIRE([FP_PROG_AR_IS_GNU])
464 AC_REQUIRE([FP_PROG_AR_ARGS])
465 AC_REQUIRE([AC_PROG_CC])
466 AC_CACHE_CHECK([whether ranlib is needed], [fp_cv_prog_ar_needs_ranlib],
467 [if test $fp_prog_ar_is_gnu = yes; then
468   fp_cv_prog_ar_needs_ranlib=no
469 elif echo $TargetPlatform | grep "^.*-apple-darwin$"  > /dev/null 2> /dev/null; then
470   # It's quite tedious to check for Apple's crazy timestamps in .a files,
471   # so we hardcode it.
472   fp_cv_prog_ar_needs_ranlib=yes
473 elif echo $fp_prog_ar_args | grep "s" > /dev/null 2> /dev/null; then
474   fp_cv_prog_ar_needs_ranlib=no
475 else
476   fp_cv_prog_ar_needs_ranlib=yes
477 fi])
478 if test $fp_cv_prog_ar_needs_ranlib = yes; then
479    AC_PROG_RANLIB
480 else
481   RANLIB=":"
482   AC_SUBST([RANLIB])
483 fi
484 ])# FP_PROG_AR_NEEDS_RANLIB
485
486
487 # FP_PROG_AR_SUPPORTS_INPUT
488 # -------------------------
489 # Sets the output variable ArSupportsInput to "-input" or "", depending on
490 # whether ar supports -input flag is supported or not.
491 AC_DEFUN([FP_PROG_AR_SUPPORTS_INPUT],
492 [AC_REQUIRE([FP_PROG_AR_IS_GNU])
493 AC_REQUIRE([FP_PROG_AR_ARGS])
494 AC_CACHE_CHECK([whether $fp_prog_ar_raw supports -input], [fp_cv_prog_ar_supports_input],
495 [fp_cv_prog_ar_supports_input=no
496 if test $fp_prog_ar_is_gnu = no; then
497   rm -f conftest*
498   touch conftest.lst
499   if FP_EVAL_STDERR([$fp_prog_ar_raw $fp_prog_ar_args conftest.a -input conftest.lst]) >/dev/null; then
500     test -s conftest.err || fp_cv_prog_ar_supports_input=yes
501   fi
502   rm -f conftest*
503 fi])
504 if test $fp_cv_prog_ar_supports_input = yes; then
505     ArSupportsInput="-input"
506 else
507     ArSupportsInput=""
508 fi
509 AC_SUBST([ArSupportsInput])
510 ])# FP_PROG_AR_SUPPORTS_INPUT
511
512
513 dnl
514 dnl AC_SHEBANG_PERL - can we she-bang perl?
515 dnl
516 AC_DEFUN([FPTOOLS_SHEBANG_PERL],
517 [AC_CACHE_CHECK([if your perl works in shell scripts], fptools_cv_shebang_perl,
518 [echo "#!$PerlCmd"'
519 exit $1;
520 ' > conftest
521 chmod u+x conftest
522 (SHELL=/bin/sh; export SHELL; ./conftest 69 > /dev/null)
523 if test $? -ne 69; then
524    fptools_cv_shebang_perl=yes
525 else
526    fptools_cv_shebang_perl=no
527 fi
528 rm -f conftest
529 ])])
530
531
532 # FP_HAVE_GCC
533 # -----------
534 # Extra testing of the result AC_PROG_CC, testing the gcc version no. Sets the
535 # output variables HaveGcc and GccVersion.
536 AC_DEFUN([FP_HAVE_GCC],
537 [AC_REQUIRE([AC_PROG_CC])
538 if test -z "$GCC"; then
539    fp_have_gcc=NO
540 else
541    fp_have_gcc=YES
542 fi
543 if test "$fp_have_gcc" = "NO" -a -d $srcdir/ghc; then
544   AC_MSG_ERROR([gcc is required])
545 fi
546 AC_CACHE_CHECK([version of gcc], [fp_gcc_version],
547 [if test "$fp_have_gcc" = "YES"; then
548    fp_gcc_version="`$CC -v 2>&1 | grep 'version ' | sed -e 's/.*version [[^0-9]]*\([[0-9.]]*\).*/\1/g'`"
549    FP_COMPARE_VERSIONS([$fp_gcc_version], [-lt], [2.0],
550      [AC_MSG_ERROR([Need at least gcc version 2.0 (3.4+ recommended)])])
551  else
552    fp_gcc_version="not-installed"
553  fi
554 ])
555 AC_SUBST([HaveGcc], [$fp_have_gcc])
556 AC_SUBST([GccVersion], [$fp_gcc_version])
557 ])# FP_HAVE_GCC
558
559 AC_DEFUN([FP_MINGW_GCC],
560 [
561   case $HostOS_CPP in
562     mingw*)  AC_MSG_CHECKING([whether $CC is a mingw gcc])
563              if $CC -v 2>&1 | grep mingw >/dev/null; then
564                 AC_MSG_RESULT([yes])
565              else
566                 AC_MSG_RESULT([no])
567                 AC_MSG_ERROR([Please use --with-gcc to specify a mingw gcc])
568              fi;;
569     *) ;;       
570   esac
571 ])
572
573 dnl Small feature test for perl version. Assumes PerlCmd
574 dnl contains path to perl binary.
575 dnl
576 dnl (Perl versions prior to v5.6 does not contain the string "v5";
577 dnl instead they display version strings such as "version 5.005".)
578 dnl
579 AC_DEFUN([FPTOOLS_CHECK_PERL_VERSION],
580 [$PerlCmd -v >conftest.out 2>&1
581    if grep "v5" conftest.out >/dev/null 2>&1; then
582       :
583    else
584       AC_MSG_ERROR([your version of perl probably won't work, try upgrading it.])
585    fi
586 rm -fr conftest*
587 ])
588
589
590 # FP_CHECK_PROG(VARIABLE, PROG-TO-CHECK-FOR,
591 #               [VALUE-IF-NOT-FOUND], [PATH], [REJECT])
592 # -----------------------------------------------------
593 # HACK: A small wrapper around AC_CHECK_PROG, setting VARIABLE to the full path
594 # of PROG-TO-CHECK-FOR when found.
595 AC_DEFUN([FP_CHECK_PROG],
596 [AC_CHECK_PROG([$1], [$2], [$as_dir/$ac_word$ac_exec_ext], [$3], [$4], [$5])][]dnl
597 )# FP_CHECK_PROC
598
599
600 # FP_PROG_FIND
601 # ------------
602 # Find a non-WinDoze version of the "find" utility.
603 AC_DEFUN([FP_PROG_FIND],
604 [AC_PATH_PROG([fp_prog_find], [find])
605 echo foo > conftest.txt
606 $fp_prog_find conftest.txt -print > conftest.out 2>&1
607 if grep '^conftest.txt$' conftest.out > /dev/null 2>&1 ; then
608   # OK, looks like a real "find".
609   case $HostPlatform in
610     *mingw32)
611       if test x${OSTYPE} != xmsys
612       then
613             fp_prog_find="`cygpath --mixed ${fp_prog_find}`"
614         AC_MSG_NOTICE([normalized find command to $fp_prog_find])
615       fi ;;
616     *) ;;
617   esac
618   FindCmd="$fp_prog_find"
619 else
620   # Found a poor WinDoze version of "find", ignore it.
621   AC_MSG_WARN([$fp_prog_find looks like a non-*nix find, ignoring it])
622   FP_CHECK_PROG([FindCmd], [find], [], [], [$fp_prog_find])
623 fi
624 rm -f conftest.txt conftest.out
625 AC_SUBST([FindCmd])[]dnl
626 ])# FP_PROG_FIND
627
628
629 # FP_PROG_SORT
630 # ------------
631 # Find a Unix-like sort
632 AC_DEFUN([FP_PROG_SORT],
633 [AC_PATH_PROG([fp_prog_sort], [sort])
634 echo conwip > conftest.txt
635 $fp_prog_sort -f conftest.txt > conftest.out 2>&1
636 if grep 'conwip' conftest.out > /dev/null 2>&1 ; then
637   # The goods
638   SortCmd="$fp_prog_sort"
639 else
640   # Summink else..pick next one.
641   AC_MSG_WARN([$fp_prog_sort looks like a non-*nix sort, ignoring it])
642   FP_CHECK_PROG([SortCmd], [sort], [], [], [$fp_prog_sort])
643 fi
644 rm -f conftest.txt conftest.out
645 AC_SUBST([SortCmd])[]dnl
646 ])# FP_PROG_SORT
647
648 dnl
649 dnl FPTOOLS_NOCACHE_CHECK prints a message, then sets the
650 dnl values of the second argument to the result of running
651 dnl the commands given by the third. It does not cache its
652 dnl result, so it is suitable for checks which should be
653 dnl run every time.
654 dnl
655 AC_DEFUN([FPTOOLS_NOCACHE_CHECK],
656 [AC_MSG_CHECKING([$1])
657  $3
658  AC_MSG_RESULT([$][$2])
659 ])
660
661 dnl
662 dnl FPTOOLS_GHC_VERSION(version)
663 dnl FPTOOLS_GHC_VERSION(major, minor [, patchlevel])
664 dnl FPTOOLS_GHC_VERSION(version, major, minor, patchlevel)
665 dnl
666 dnl Test for version of installed ghc.  Uses $GHC.
667 dnl [original version pinched from c2hs]
668 dnl
669 AC_DEFUN([FPTOOLS_GHC_VERSION],
670 [FPTOOLS_NOCACHE_CHECK([version of ghc], [fptools_version_of_ghc],
671 ["${WithGhc-ghc}" --version > conftestghc 2>&1
672   cat conftestghc >&AS_MESSAGE_LOG_FD
673 #Useless Use Of cat award...
674   fptools_version_of_ghc=`cat conftestghc | sed -n -e 's/, patchlevel *\([[0-9]]\)/.\1/;s/.* version \([[0-9]][[0-9.]]*\).*/\1/p'`
675   rm -fr conftest*
676   if test "[$]fptools_version_of_ghc" = ""
677   then
678     fptools_version_of_ghc='unknown'
679   fi
680 fptools_version_of_ghc[_major]=`echo [$]fptools_version_of_ghc | sed -e 's/^\([[0-9]]\).*/\1/'`
681 fptools_version_of_ghc[_minor]=`echo [$]fptools_version_of_ghc | sed -e 's/^[[0-9]]\.\([[0-9]]*\).*/\1/'`
682 fptools_version_of_ghc[_pl]=`echo [$]fptools_version_of_ghc | sed -n -e 's/^[[0-9]]\.[[0-9]]*\.\([[0-9]]*\)/\1/p'`
683 #
684 if test "[$]fptools_version_of_ghc[_pl]" = ""
685 then
686   fptools_version_of_ghc[_all]="[$]fptools_version_of_ghc[_major].[$]fptools_version_of_ghc[_minor]"
687   fptools_version_of_ghc[_pl]="0"
688 else
689   fptools_version_of_ghc[_all]="[$]fptools_version_of_ghc[_major].[$]fptools_version_of_ghc[_minor].[$]fptools_version_of_ghc[_pl]"
690 fi
691 #
692 ifelse($#, [1], [dnl
693 [$1]="[$]fptools_version_of_ghc[_all]"
694 ], $#, [2], [dnl
695 [$1]="[$]fptools_version_of_ghc[_major]"
696 [$2]="[$]fptools_version_of_ghc[_minor]"
697 ], $#, [3], [dnl
698 [$1]="[$]fptools_version_of_ghc[_major]"
699 [$2]="[$]fptools_version_of_ghc[_minor]"
700 [$3]="[$]fptools_version_of_ghc[_pl]"
701 ], $#, [4], [dnl
702 [$1]="[$]fptools_version_of_ghc[_all]"
703 [$2]="[$]fptools_version_of_ghc[_major]"
704 [$3]="[$]fptools_version_of_ghc[_minor]"
705 [$4]="[$]fptools_version_of_ghc[_pl]"
706 ])
707 ])
708 ])dnl
709
710
711 # FP_CHECK_FUNC(FUNCTION, PROLOGUE, BODY, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND])
712 # ---------------------------------------------------------------------------------
713 # A variant of AC_CHECK_FUNCS, limited to a single FUNCTION, but with the
714 # additional flexibility of specifying the PROLOGUE and BODY.
715 AC_DEFUN([FP_CHECK_FUNC],
716 [AS_VAR_PUSHDEF([fp_func], [fp_cv_func_$1])dnl
717 AC_CACHE_CHECK([for $1], fp_func,
718 [AC_LINK_IFELSE([AC_LANG_PROGRAM([$2], [$3])],
719                 [AS_VAR_SET(fp_func, yes)],
720                 [AS_VAR_SET(fp_func, no)])])
721 AS_IF([test AS_VAR_GET(fp_func) = yes],
722       [AC_DEFINE(AS_TR_CPP(HAVE_$1), [1],
723                 [Define to 1 if you have the `]$1[' function.]) $4],
724       [$5])dnl
725 AS_VAR_POPDEF([fp_func])dnl
726 ])# FP_CHECK_FUNC
727
728
729 # FP_GEN_DOCBOOK_XML
730 # ------------------
731 # Generates a DocBook XML V4.2 document in conftest.xml.
732 AC_DEFUN([FP_GEN_DOCBOOK_XML],
733 [rm -f conftest.xml
734 cat > conftest.xml << EOF
735 <?xml version="1.0" encoding="iso-8859-1"?>
736 <!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
737    "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
738 <book id="test">
739   <title>A DocBook Test Document</title>
740   <chapter id="id-one">
741     <title>A Chapter Title</title>
742     <para>This is a paragraph, referencing <xref linkend="id-two"/>.</para>
743   </chapter>
744   <chapter id="id-two">
745     <title>Another Chapter Title</title>
746     <para>This is another paragraph, referencing <xref linkend="id-one"/>.</para>
747   </chapter>
748 </book>
749 EOF
750 ]) # FP_GEN_DOCBOOK_XML
751
752
753 # FP_PROG_XSLTPROC
754 # ----------------
755 # Sets the output variable XsltprocCmd to the full path of the XSLT processor
756 # xsltproc. XsltprocCmd is empty if xsltproc could not be found.
757 AC_DEFUN([FP_PROG_XSLTPROC],
758 [AC_PATH_PROG([XsltprocCmd], [xsltproc])
759 if test -z "$XsltprocCmd"; then
760   AC_MSG_WARN([cannot find xsltproc in your PATH, you will not be able to build the documentation])
761 fi
762 ])# FP_PROG_XSLTPROC
763
764
765 # FP_DIR_DOCBOOK_XSL(XSL-DIRS)
766 # ----------------------------
767 # Check which of the directories XSL-DIRS contains DocBook XSL stylesheets. The
768 # output variable DIR_DOCBOOK_XSL will contain the first usable directory or
769 # will be empty if none could be found.
770 AC_DEFUN([FP_DIR_DOCBOOK_XSL],
771 [AC_REQUIRE([FP_PROG_XSLTPROC])dnl
772 if test -n "$XsltprocCmd"; then
773   AC_CACHE_CHECK([for DocBook XSL stylesheet directory], fp_cv_dir_docbook_xsl,
774   [FP_GEN_DOCBOOK_XML
775   fp_cv_dir_docbook_xsl=no
776   for fp_var in $1; do
777      if $XsltprocCmd ${fp_var}/html/docbook.xsl conftest.xml > /dev/null 2>&1; then
778         fp_cv_dir_docbook_xsl=$fp_var
779         break
780      fi
781   done
782   rm -rf conftest*])
783 fi
784 if test x"$fp_cv_dir_docbook_xsl" = xno; then
785   AC_MSG_WARN([cannot find DocBook XSL stylesheets, you will not be able to build the documentation])
786   DIR_DOCBOOK_XSL=
787 else
788   DIR_DOCBOOK_XSL=$fp_cv_dir_docbook_xsl
789 fi
790 AC_SUBST([DIR_DOCBOOK_XSL])
791 ])# FP_DIR_DOCBOOK_XSL
792
793
794 # FP_PROG_XMLLINT
795 # ----------------
796 # Sets the output variable XmllintCmd to the full path of the XSLT processor
797 # xmllint. XmllintCmd is empty if xmllint could not be found.
798 AC_DEFUN([FP_PROG_XMLLINT],
799 [AC_PATH_PROG([XmllintCmd], [xmllint])
800 if test -z "$XmllintCmd"; then
801   AC_MSG_WARN([cannot find xmllint in your PATH, you will not be able to validate your documentation])
802 fi
803 ])# FP_PROG_XMLLINT
804
805
806 # FP_CHECK_DOCBOOK_DTD
807 # --------------------
808 AC_DEFUN([FP_CHECK_DOCBOOK_DTD],
809 [AC_REQUIRE([FP_PROG_XMLLINT])dnl
810 if test -n "$XmllintCmd"; then
811   AC_MSG_CHECKING([for DocBook DTD])
812   FP_GEN_DOCBOOK_XML
813   if $XmllintCmd --valid --noout conftest.xml > /dev/null 2>&1; then
814     AC_MSG_RESULT([ok])
815   else
816     AC_MSG_RESULT([failed])
817     AC_MSG_WARN([cannot find a DTD for DocBook XML V4.2, you will not be able to validate your documentation])
818     AC_MSG_WARN([check your XML_CATALOG_FILES environment variable and/or /etc/xml/catalog])
819   fi
820   rm -rf conftest*
821 fi
822 ])# FP_CHECK_DOCBOOK_DTD
823
824
825 # FP_GEN_FO
826 # ------------------
827 # Generates a formatting objects document in conftest.fo.
828 AC_DEFUN([FP_GEN_FO],
829 [rm -f conftest.fo
830 cat > conftest.fo << EOF
831 <?xml version="1.0"?>
832 <fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format">
833   <fo:layout-master-set>
834     <fo:simple-page-master master-name="blank">
835       <fo:region-body/>
836     </fo:simple-page-master>
837   </fo:layout-master-set>
838   <fo:page-sequence master-reference="blank">
839     <fo:flow flow-name="xsl-region-body">
840       <fo:block>
841         Test!
842       </fo:block>
843     </fo:flow>
844   </fo:page-sequence>
845 </fo:root>
846 EOF
847 ]) # FP_GEN_FO
848
849
850 # FP_PROG_FOP
851 # -----------
852 # Set the output variable 'FopCmd' to the first working 'fop' in the current
853 # 'PATH'. Note that /usr/bin/fop is broken in SuSE 9.1 (unpatched), so try
854 # /usr/share/fop/fop.sh in that case (or no 'fop'), too.
855 AC_DEFUN([FP_PROG_FOP],
856 [AC_PATH_PROGS([FopCmd1], [fop fop.sh])
857 if test -n "$FopCmd1"; then
858   AC_CACHE_CHECK([for $FopCmd1 usability], [fp_cv_fop_usability],
859     [FP_GEN_FO
860     if "$FopCmd1" -fo conftest.fo -ps conftest.ps > /dev/null 2>&1; then
861       fp_cv_fop_usability=yes
862     else
863       fp_cv_fop_usability=no
864     fi
865     rm -rf conftest*])
866   if test x"$fp_cv_fop_usability" = xyes; then
867      FopCmd=$FopCmd1
868   fi
869 fi
870 if test -z "$FopCmd"; then
871   AC_PATH_PROGS([FopCmd2], [fop.sh], , [/usr/share/fop])
872   FopCmd=$FopCmd2
873 fi
874 AC_SUBST([FopCmd])
875 ])# FP_PROG_FOP
876
877
878 # FP_PROG_FO_PROCESSOR
879 # --------------------
880 # Try to find an FO processor. PassiveTeX output is sometimes a bit strange, so
881 # try FOP first. Sets the output variables FopCmd, XmltexCmd, DvipsCmd, and
882 # PdfxmltexCmd.
883 AC_DEFUN([FP_PROG_FO_PROCESSOR],
884 [AC_REQUIRE([FP_PROG_FOP])
885 AC_PATH_PROG([XmltexCmd], [xmltex])
886 AC_PATH_PROG([DvipsCmd], [dvips])
887 if test -z "$FopCmd"; then
888   if test -z "$XmltexCmd"; then
889     AC_MSG_WARN([cannot find an FO => DVI converter, you will not be able to build DVI or PostScript documentation])
890   else
891     if test -z "$DvipsCmd"; then
892       AC_MSG_WARN([cannot find a DVI  => PS converter, you will not be able to build PostScript documentation])
893     fi
894   fi
895   AC_PATH_PROG([PdfxmltexCmd], [pdfxmltex])
896   if test -z "$PdfxmltexCmd"; then
897     AC_MSG_WARN([cannot find an FO => PDF converter, you will not be able to build PDF documentation])
898   fi
899 elif test -z "$XmltexCmd"; then
900   AC_MSG_WARN([cannot find an FO => DVI converter, you will not be able to build DVI documentation])
901 fi
902 ])# FP_PROG_FO_PROCESSOR
903
904
905 # FP_PROG_GHC_PKG
906 # ----------------
907 # Try to find a ghc-pkg matching the ghc mentioned in the environment variable
908 # WithGhc. If the latter is unset or no matching ghc-pkg can be found, try to
909 # find a plain ghc-pkg. Sets the output variable GhcPkgCmd.
910 AC_DEFUN([FP_PROG_GHC_PKG],
911 [AC_CACHE_CHECK([for ghc-pkg matching $WithGhc], fp_cv_matching_ghc_pkg,
912 [fp_ghc_pkg_guess=`echo $WithGhc | sed 's,ghc\(@<:@^/\\@:>@*\)$,ghc-pkg\1,'`
913 if "$fp_ghc_pkg_guess" -l > /dev/null 2>&1; then
914   fp_cv_matching_ghc_pkg=$fp_ghc_pkg_guess
915 else
916   fp_cv_matching_ghc_pkg=no
917 fi])
918 if test x"$fp_cv_matching_ghc_pkg" = xno; then
919   AC_PATH_PROG([GhcPkgCmd], [ghc-pkg])
920 else
921   GhcPkgCmd=$fp_cv_matching_ghc_pkg
922 fi])# FP_PROG_GHC_PKG
923
924
925 # FP_GHC_HAS_READLINE
926 # -------------------
927 AC_DEFUN([FP_GHC_HAS_READLINE],
928 [AC_REQUIRE([FP_PROG_GHC_PKG])
929 AC_CACHE_CHECK([whether ghc has readline package], [fp_cv_ghc_has_readline],
930 [if "${GhcPkgCmd-ghc-pkg}" --show-package readline >/dev/null 2>&1; then
931   fp_cv_ghc_has_readline=yes
932 else
933   fp_cv_ghc_has_readline=no
934  fi])
935 AC_SUBST([GhcHasReadline], [`echo $fp_cv_ghc_has_readline | sed 'y/yesno/YESNO/'`])
936 ])# FP_GHC_HAS_READLINE
937
938
939 # FP_GCC_EXTRA_FLAGS
940 # ------------------
941 # Determine which extra flags we need to pass gcc when we invoke it
942 # to compile .hc code.
943 #
944 # Some OSs (Mandrake Linux, in particular) configure GCC with
945 # -momit-leaf-frame-pointer on by default. If this is the case, we
946 # need to turn it off for mangling to work. The test is currently a
947 # bit crude, using only the version number of gcc.
948
949 # -fwrapv is needed for gcc to emit well-behaved code in the presence of
950 # integer wrap around. (Trac #952)
951 #
952 # -fno-unit-at-a-time or -fno-toplevel-reoder is necessary to avoid gcc
953 # reordering things in the module and confusing the manger and/or splitter.
954 # (eg. Trac #1427)
955 #
956 AC_DEFUN([FP_GCC_EXTRA_FLAGS],
957 [AC_REQUIRE([FP_HAVE_GCC])
958 AC_CACHE_CHECK([for extra options to pass gcc when compiling via C], [fp_cv_gcc_extra_opts],
959 [fp_cv_gcc_extra_opts=
960  FP_COMPARE_VERSIONS([$fp_gcc_version], [-ge], [3.4],
961   [fp_cv_gcc_extra_opts="$fp_cv_gcc_extra_opts -fwrapv"],
962   [])
963  case $TargetPlatform in
964   i386-*|x86_64-*) 
965      FP_COMPARE_VERSIONS([$fp_gcc_version], [-ge], [3.2],
966       [fp_cv_gcc_extra_opts="$fp_cv_gcc_extra_opts -mno-omit-leaf-frame-pointer"],
967       [])
968     FP_COMPARE_VERSIONS([$fp_gcc_version], [-ge], [3.4],
969      [FP_COMPARE_VERSIONS([$fp_gcc_version], [-ge], [4.2],
970        [fp_cv_gcc_extra_opts="$fp_cv_gcc_extra_opts -fno-toplevel-reorder"],
971        [fp_cv_gcc_extra_opts="$fp_cv_gcc_extra_opts -fno-unit-at-a-time"]
972      )],
973      [])
974   ;;
975  esac
976 ])
977 AC_SUBST([GccExtraViaCOpts],$fp_cv_gcc_extra_opts)
978 ])
979
980
981 # FP_SETUP_PROJECT_VERSION
982 # ---------------------
983 AC_DEFUN([FP_SETUP_PROJECT_VERSION],
984 [
985 if test "$RELEASE" = "NO"; then
986     AC_MSG_CHECKING([for GHC version date])
987     if test -f VERSION_DATE; then
988         PACKAGE_VERSION=${PACKAGE_VERSION}.`cat VERSION_DATE`
989         AC_MSG_RESULT(given $PACKAGE_VERSION)
990     elif test -d _darcs; then
991         changequote(, )dnl
992         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" | sort -n | tail -1`
993         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
994         changequote([, ])dnl
995                 AC_MSG_ERROR([failed to detect version date: check that darcs is in your path])
996         fi
997         PACKAGE_VERSION=${PACKAGE_VERSION}.$ver_date
998         AC_MSG_RESULT(inferred $PACKAGE_VERSION)
999     elif test -f VERSION; then
1000         PACKAGE_VERSION=`cat VERSION`
1001         AC_MSG_RESULT(given $PACKAGE_VERSION)
1002     else
1003         AC_MSG_WARN([cannot determine snapshot version: no _darcs directory and no VERSION file])
1004     fi
1005 fi
1006
1007 # Some renamings
1008 AC_SUBST([ProjectName], [$PACKAGE_NAME])
1009 AC_SUBST([ProjectVersion], [$PACKAGE_VERSION])
1010
1011 # Split PACKAGE_VERSION into (possibly empty) parts
1012 VERSION_MAJOR=`echo $PACKAGE_VERSION | sed 's/^\(@<:@^.@:>@*\)\(\.\{0,1\}\(.*\)\)$/\1'/`
1013 VERSION_TMP=`echo $PACKAGE_VERSION | sed 's/^\(@<:@^.@:>@*\)\(\.\{0,1\}\(.*\)\)$/\3'/`
1014 VERSION_MINOR=`echo $VERSION_TMP | sed 's/^\(@<:@^.@:>@*\)\(\.\{0,1\}\(.*\)\)$/\1'/`
1015 ProjectPatchLevel=`echo $VERSION_TMP | sed 's/^\(@<:@^.@:>@*\)\(\.\{0,1\}\(.*\)\)$/\3'/`
1016
1017 # Calculate project version as an integer, using 2 digits for minor version
1018 case $VERSION_MINOR in
1019   ?) ProjectVersionInt=${VERSION_MAJOR}0${VERSION_MINOR} ;;
1020   ??) ProjectVersionInt=${VERSION_MAJOR}${VERSION_MINOR} ;;
1021   *) AC_MSG_ERROR([bad minor version in $PACKAGE_VERSION]) ;;
1022 esac
1023 AC_SUBST([ProjectVersionInt])
1024
1025 # The project patchlevel is zero unless stated otherwise
1026 test -z "$ProjectPatchLevel" && ProjectPatchLevel=0
1027
1028 # Remove dots from the patch level; this allows us to have versions like 6.4.1.20050508
1029 ProjectPatchLevel=`echo $ProjectPatchLevel | sed 's/\.//'`
1030
1031 AC_SUBST([ProjectPatchLevel])
1032 ])# FP_SETUP_PROJECT_VERSION
1033
1034 AC_DEFUN([FP_CHECK_TIMER_CREATE],
1035   [AC_CACHE_CHECK([for a working timer_create(CLOCK_REALTIME)], 
1036     [fptools_cv_timer_create_works],
1037     [AC_TRY_RUN([
1038 #ifdef HAVE_TIME_H
1039 #include <time.h>
1040 #endif
1041 #ifdef HAVE_SIGNAL_H
1042 #include <signal.h>
1043 #endif
1044 #ifdef HAVE_UNISTD_H
1045 #include <unistd.h>
1046 #endif
1047 int main(int argc, char *argv[])
1048 {
1049 #if HAVE_TIMER_CREATE && HAVE_TIMER_SETTIME
1050     struct sigevent ev;
1051     timer_t timer;
1052     ev.sigev_notify = SIGEV_SIGNAL;
1053     ev.sigev_signo  = SIGVTALRM;
1054     if (timer_create(CLOCK_PROCESS_CPUTIME_ID, &ev, &timer) != 0) {
1055        exit(1);
1056     }
1057 #else
1058     exit(1)
1059 #endif
1060     exit(0);
1061 }
1062      ],
1063      [fptools_cv_timer_create_works=yes],
1064      [fptools_cv_timer_create_works=no])
1065   ])
1066 case $fptools_cv_timer_create_works in
1067     yes) AC_DEFINE([USE_TIMER_CREATE], 1, 
1068                    [Define to 1 if we can use timer_create(CLOCK_PROCESS_CPUTIME_ID,...)]);;
1069 esac
1070 ])
1071
1072 # FP_ARG_GMP
1073 # -------------
1074 AC_DEFUN([FP_ARG_GMP],
1075 [
1076 AC_ARG_WITH([gmp-includes],
1077   [AC_HELP_STRING([--with-gmp-includes],
1078     [directory containing gmp.h])],
1079     [gmp_includes=$withval],
1080     [gmp_includes=NONE])
1081
1082 AC_ARG_WITH([gmp-libraries],
1083   [AC_HELP_STRING([--with-gmp-libraries],
1084     [directory containing gmp library])],
1085     [gmp_libraries=$withval],
1086     [gmp_libraries=NONE])
1087 ])# FP_ARG_GMP
1088
1089 AC_DEFUN([CHECK_GMP],
1090 [AC_REQUIRE([AC_PROG_CPP])
1091 AC_REQUIRE([AC_PROG_CC])
1092 ])
1093
1094 # --------------------------------------------------------------
1095 # Calculate absolute path to build tree
1096 # --------------------------------------------------------------
1097
1098 AC_DEFUN([FP_FIND_ROOT],[
1099 AC_MSG_CHECKING(for path to top of build tree)
1100
1101 dnl This would be
1102 dnl     make -C utils/pwd clean && make -C utils/pwd
1103 dnl except we don't want to have to know what make is called. Sigh.
1104 if test ! -f utils/pwd/pwd && test ! -f utils/pwd/pwd.exe; then
1105   cd utils/pwd
1106   rm -f *.o
1107   rm -f *.hi
1108   rm -f pwd
1109   rm -f pwd.exe
1110   $WithGhc -v0 --make pwd -o pwd
1111   cd ../..
1112 fi
1113
1114 hardtop=`utils/pwd/pwd forwardslash`
1115
1116 if ! test -d "$hardtop"; then
1117   AC_MSG_ERROR([cannot determine current directory])
1118 fi   
1119
1120 dnl Remove common automounter nonsense
1121 dnl
1122 hardtop=`echo $hardtop | sed 's|^/tmp_mnt.*\(/local/.*\)$|\1|' | sed 's|^/tmp_mnt/|/|'`
1123
1124 hardtop_plat="$hardtop"
1125
1126 AC_SUBST(hardtop)
1127 AC_SUBST(hardtop_plat)
1128
1129 AC_MSG_RESULT(${hardtop})
1130
1131 # We don't support building in directories with spaces.
1132 case "$hardtop" in
1133   *' '*) AC_MSG_ERROR([
1134    The build system does not support building in a directory containing
1135    space characters.  Suggestion: move the build tree somewhere else.])
1136  ;;
1137 esac
1138 ])
1139
1140 # LocalWords:  fi