[go: up one dir, main page]

Menu

[r7]: / trunk / configure.ac  Maximize  Restore  History

Download this file

26 lines (18 with data), 546 Bytes

AC_PREREQ(2.62)
AC_INIT([volumetric], [0.0.0], [kanaya@users.sourceforge.net])
AC_CONFIG_SRCDIR([src/divide.cc])
AC_CONFIG_HEADERS([config.h])

AM_INIT_AUTOMAKE

# Checks for programs.
AC_PROG_CXX

# Checks for libraries.
# FIXME: Replace `main' with a function in `-lvec':
AC_CHECK_LIB([vec], [vec_put_nil_to_file])

# Checks for header files.

# Checks for typedefs, structures, and compiler characteristics.
AC_HEADER_STDBOOL
AC_TYPE_SIZE_T

# Checks for library functions.

AC_CONFIG_FILES([Makefile
                 src/Makefile])
AC_OUTPUT