mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-02-05 02:34:18 +00:00
13522cdbe2
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2455 d0543943-73ff-0310-b7d9-9358b9ac24b2
29 lines
612 B
Plaintext
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
|