configure.scan 639 B

12345678910111213141516171819202122232425262728
  1. # -*- Autoconf -*-
  2. # Process this file with autoconf to produce a configure script.
  3. AC_PREREQ([2.69])
  4. AC_INIT([FULL-PACKAGE-NAME], [VERSION], [BUG-REPORT-ADDRESS])
  5. AC_CONFIG_SRCDIR([db_card.cpp])
  6. AC_CONFIG_HEADERS([config.h])
  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([string.h])
  13. # Checks for typedefs, structures, and compiler characteristics.
  14. AC_CHECK_HEADER_STDBOOL
  15. AC_TYPE_INT64_T
  16. AC_TYPE_UINT32_T
  17. AC_TYPE_UINT64_T
  18. # Checks for library functions.
  19. AC_CHECK_FUNCS([memset])
  20. AC_CONFIG_FILES([Makefile])
  21. AC_OUTPUT