configure.ac 728 B

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