You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

configure.in 726 B

123456789101112131415161718192021222324252627282930313233
  1. AC_PREREQ(2.52)
  2. # Process this file with autoconf to produce a configure script.
  3. AC_INIT([JSON C Library], 0.3, [michael@metaparadigm.com], [json-c])
  4. AM_INIT_AUTOMAKE(AC_PACKAGE_NAME, AC_PACKAGE_VERSION)
  5. # Checks for programs.
  6. # Checks for libraries.
  7. # Checks for header files.
  8. AM_CONFIG_HEADER(config.h)
  9. AC_HEADER_STDC
  10. AC_CHECK_HEADERS(fcntl.h limits.h strings.h syslog.h unistd.h [sys/param.h] stdarg.h)
  11. # Checks for typedefs, structures, and compiler characteristics.
  12. AC_C_CONST
  13. AC_TYPE_SIZE_T
  14. # Checks for library functions.
  15. AC_FUNC_VPRINTF
  16. AC_FUNC_MEMCMP
  17. AC_FUNC_MALLOC
  18. AC_FUNC_REALLOC
  19. AC_CHECK_FUNCS(strndup strerror vsnprintf vasprintf open vsyslog strncasecmp)
  20. AM_PROG_LIBTOOL
  21. AC_OUTPUT([
  22. Makefile
  23. json.pc
  24. ])

No Description

Contributors (1)