Browse Source

Merge 8aaf0b1f40 into a789601e6d

pull/31/merge
GitHub Merge Button 13 years ago
parent
commit
06b2d331a0
3 changed files with 9 additions and 1 deletions
  1. +2
    -0
      Makefile.am
  2. +6
    -0
      config.h.in
  3. +1
    -1
      configure.in

+ 2
- 0
Makefile.am View File

@@ -18,10 +18,12 @@ libjsoninclude_HEADERS = \
json_inttypes.h \
json_object.h \
json_object_private.h \
json_object_iterator.h \
json_tokener.h \
json_util.h \
linkhash.h \
printbuf.h

#libjsonx_includedir = $(libdir)/json-c-@VERSION@
#


+ 6
- 0
config.h.in View File

@@ -29,6 +29,9 @@
and to 0 otherwise. */
#undef HAVE_REALLOC

/* Define to 1 if you have the `snprintf' function. */
#undef HAVE_SNPRINTF

/* Define to 1 if you have the <stdarg.h> header file. */
#undef HAVE_STDARG_H

@@ -38,6 +41,9 @@
/* Define to 1 if you have the <stdlib.h> header file. */
#undef HAVE_STDLIB_H

/* Define to 1 if you have the `strdup' function. */
#undef HAVE_STRDUP

/* Define to 1 if you have the `strerror' function. */
#undef HAVE_STRERROR



+ 1
- 1
configure.in View File

@@ -27,7 +27,7 @@ AC_FUNC_VPRINTF
AC_FUNC_MEMCMP
AC_FUNC_MALLOC
AC_FUNC_REALLOC
AC_CHECK_FUNCS(strndup strerror vsnprintf vasprintf open vsyslog strncasecmp)
AC_CHECK_FUNCS(strndup strdup strerror snprintf vsnprintf vasprintf open vsyslog strncasecmp)

AM_PROG_LIBTOOL



Loading…
Cancel
Save