altfloat-0.2: configure.ac
dnl Copyright (C) 2009 Nick Bowler
dnl Copying and distribution of this file, with or without modification,
dnl are permitted in any medium without royalty provided the copyright
dnl notice and this notice are preserved. This file is offered as-is,
dnl without any warranty.
AC_PREREQ(2.62)
AC_INIT([altfloat],[0.1],[nbowler@draconx.ca])
AC_CONFIG_SRCDIR([altfloat.cabal])
dnl We don't actually care, but this shuts up the warning.
AC_ARG_WITH([compiler], [AS_HELP_STRING([--with-compiler],
[specify which Haskell compiler to use])])
AC_PROG_CC_C99
dnl Cabal won't let us specify the C compiler, so we need this hack.
CC_OPTS=`echo $CC | sed 's/@<:@^@<:@:space:@:>@@:>@*//'`
AC_SUBST([CC_OPTS])
AC_CONFIG_FILES([
altfloat.buildinfo
])
AC_OUTPUT