blob: 01ae56804183c4fbf8869f751858c15c25c4a647 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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
|