Blame doc/example/configure.ac

Packit 0b5880
# Process this file with autoconf to produce a configure script.
Packit 0b5880
Packit 0b5880
# Prelude.
Packit 0b5880
AC_PREREQ([2.59])
Packit 0b5880
AC_INIT([Money], [0.3], [check-devel AT lists.sourceforge.net])
Packit 0b5880
AM_PROG_AR
Packit 0b5880
Packit 0b5880
# unique source file --- primitive safety check 
Packit 0b5880
AC_CONFIG_SRCDIR([src/money.c])
Packit 0b5880
Packit 0b5880
# fairly severe build strictness
Packit 0b5880
# change foreign to gnu or gnits to comply with gnu standards
Packit 0b5880
AM_INIT_AUTOMAKE([-Wall -Werror foreign 1.11.2])
Packit 0b5880
Packit 0b5880
# Checks for programs.
Packit 0b5880
AC_PROG_CC
Packit 0b5880
AC_PROG_LIBTOOL
Packit 0b5880
Packit 0b5880
# Checks for libraries.
Packit 0b5880
Packit 0b5880
PKG_CHECK_MODULES([CHECK], [check >= 0.9.6])
Packit 0b5880
AM_PROG_CC_C_O
Packit 0b5880
Packit 0b5880
# Checks for header files.
Packit 0b5880
AC_HEADER_STDC
Packit 0b5880
AC_CHECK_HEADERS([stdlib.h])
Packit 0b5880
Packit 0b5880
# Checks for typedefs, structures, and compiler characteristics.
Packit 0b5880
Packit 0b5880
# Checks for library functions.
Packit 0b5880
AC_FUNC_MALLOC
Packit 0b5880
Packit 0b5880
# Output files
Packit 0b5880
AC_CONFIG_HEADERS([config.h])
Packit 0b5880
Packit 0b5880
AC_CONFIG_FILES([Makefile
Packit 0b5880
                 src/Makefile
Packit 0b5880
                 tests/Makefile])
Packit 0b5880
Packit 0b5880
AC_OUTPUT