freeswitch/libs/codec/lpc10/configure.ac
Anthony Minessale 13522cdbe2 libtoolize this for possible use
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2455 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-08-30 19:18:41 +00:00

29 lines
612 B
Plaintext

# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
AC_PREREQ(2.59)
AC_INIT(liblpc10, 1.0, liblpc10)
AM_INIT_AUTOMAKE(liblpc10,1.0)
AC_CONFIG_SRCDIR([f2clib.c])
# Checks for programs.
AC_PROG_CC
AC_PROG_MAKE_SET
AC_PROG_LIBTOOL
AC_PROG_INSTALL
# Checks for libraries.
# Checks for header files.
AC_HEADER_STDC
AC_CHECK_HEADERS([malloc.h stdlib.h])
# Checks for typedefs, structures, and compiler characteristics.
# Checks for library functions.
AC_FUNC_MALLOC
AC_CHECK_FUNCS([floor sqrt])
AC_CONFIG_FILES([Makefile])
AC_OUTPUT