2
0

configure.ac 732 B

1234567891011121314151617181920212223242526272829303132
  1. # -*- Autoconf -*-
  2. # Process this file with autoconf to produce a configure script.
  3. AC_PREREQ([2.59])
  4. AC_INIT(libSKP_SILK_SDK, 1.0.8, brian@freeswitch.org, libSKP_SILK_SDK)
  5. AM_INIT_AUTOMAKE
  6. # Checks for programs.
  7. AC_PROG_CC
  8. AC_PROG_LIBTOOL
  9. # Checks for header files.
  10. AC_HEADER_STDC
  11. AC_CHECK_HEADERS([float.h stdint.h stdlib.h string.h])
  12. # Checks for typedefs, structures, and compiler characteristics.
  13. AC_C_CONST
  14. AC_C_INLINE
  15. AC_TYPE_SIZE_T
  16. # Checks for library functions.
  17. AC_FUNC_MALLOC
  18. AC_CHECK_LIB([m],[pow])
  19. # Absolute source/build directory
  20. abs_srcdir=`(cd $srcdir && pwd)`
  21. abs_builddir=`pwd`
  22. AC_SUBST(abs_srcdir)
  23. AC_SUBST(abs_builddir)
  24. AC_CONFIG_FILES([Makefile])
  25. AC_OUTPUT