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