diff options
author | John Wiegley <johnw@newartisans.com> | 2007-04-15 12:55:22 +0000 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2008-04-13 03:35:33 -0400 |
commit | b27b34a76fa16fcb96632a5bf245f3876183c479 (patch) | |
tree | fe386b51289569218b776e0d7453b161f071db70 /gdtoa/configure.in | |
parent | b307f741c493652d64a6dde1df424c07eb698cb4 (diff) | |
download | fork-ledger-b27b34a76fa16fcb96632a5bf245f3876183c479.tar.gz fork-ledger-b27b34a76fa16fcb96632a5bf245f3876183c479.tar.bz2 fork-ledger-b27b34a76fa16fcb96632a5bf245f3876183c479.zip |
Added a reference to gdtoa, for doing expected conversion of double to amount.
Diffstat (limited to 'gdtoa/configure.in')
-rw-r--r-- | gdtoa/configure.in | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/gdtoa/configure.in b/gdtoa/configure.in new file mode 100644 index 00000000..01ae5680 --- /dev/null +++ b/gdtoa/configure.in @@ -0,0 +1,26 @@ +# -*- Autoconf -*- +# Process this file with autoconf to produce a configure script. + +AC_PREREQ(2.59) +AC_INIT(gdtoa, 1.0, David M. Gay) +AM_INIT_AUTOMAKE(gdtoa, 1.0) +AC_CONFIG_SRCDIR([gdtoa.c]) +AC_CONFIG_HEADERS([acconf.h]) + +# Checks for programs. +AC_PROG_MAKE_SET +AC_PROG_LIBTOOL +AM_PROG_LIBTOOL + +# Checks for header files. +AC_STDC_HEADERS +AC_HAVE_HEADERS(math.h) + +# Checks for typedefs, structures, and compiler characteristics. +AC_TYPE_SIZE_T + +# Checks for library functions. +AC_HEADER_STDC + +AC_CONFIG_FILES([Makefile]) +AC_OUTPUT |