configure.ac 660 B

12345678910111213141516171819202122232425262728293031
  1. # -*- Autoconf -*-
  2. # Process this file with autoconf to produce a configure script.
  3. AC_PREREQ([2.69])
  4. AC_INIT([libyadb.a], [1.0], [BUG-REPORT-ADDRESS])
  5. AC_CONFIG_SRCDIR([db_area.cpp])
  6. AC_CONFIG_HEADERS([config.h])
  7. AM_INIT_AUTOMAKE
  8. # Checks for programs.
  9. AC_PROG_CXX
  10. AC_PROG_CC
  11. # Checks for libraries.
  12. # Checks for header files.
  13. AC_CHECK_HEADERS([string.h])
  14. # Checks for typedefs, structures, and compiler characteristics.
  15. AC_CHECK_HEADER_STDBOOL
  16. AC_TYPE_INT32_T
  17. AC_TYPE_UINT32_T
  18. AC_TYPE_UINT64_T
  19. # Checks for library functions.
  20. AC_CHECK_FUNCS([memset])
  21. AC_PROG_RANLIB
  22. AC_CONFIG_FILES([Makefile])
  23. AC_OUTPUT