*** ./configure.ORIG Fri May 3 16:34:19 2013 --- ./configure Fri May 3 16:34:27 2013 *************** *** 4570,4576 **** esac - $as_echo "#define malloc rpl_malloc" >>confdefs.h fi --- 4570,4575 ---- *** ./configure.ORIG Fri May 3 16:36:30 2013 --- ./configure Fri May 3 16:36:43 2013 *************** *** 4636,4642 **** esac - $as_echo "#define realloc rpl_realloc" >>confdefs.h fi --- 4636,4641 ---- *** ./Makefile.in.ORIG Wed Jun 4 15:28:02 2014 --- ./Makefile.in Wed Jun 4 15:28:23 2014 *************** *** 378,384 **** top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ ! AM_CFLAGS = -Wall -Werror -Wno-error=deprecated-declarations -Wextra -Wwrite-strings -Wno-unused-parameter -std=gnu99 -D_GNU_SOURCE -D_REENTRANT EXTRA_DIST = README.html README-WIN32.html config.h.win32 doc json-c.vcproj SUBDIRS = . tests lib_LTLIBRARIES = libjson-c.la --- 378,384 ---- top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ ! AM_CFLAGS = -D_GNU_SOURCE -D_REENTRANT EXTRA_DIST = README.html README-WIN32.html config.h.win32 doc json-c.vcproj SUBDIRS = . tests lib_LTLIBRARIES = libjson-c.la *** ./tests/Makefile.in.ORIG Mon Jul 28 20:43:32 2014 --- ./tests/Makefile.in Mon Jul 28 20:40:33 2014 *************** *** 544,550 **** top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ ! AM_CFLAGS = -Wall -Werror -Wno-error=deprecated-declarations -Wextra -Wwrite-strings -Wno-unused-parameter -std=gnu99 -D_GNU_SOURCE -D_REENTRANT LDADD = $(LIBJSON_LA) LIBJSON_LA = $(top_builddir)/libjson-c.la TESTS = test1.test test2.test test4.test testReplaceExisting.test \ --- 544,550 ---- top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ ! AM_CFLAGS = -D_GNU_SOURCE -D_REENTRANT LDADD = $(LIBJSON_LA) LIBJSON_LA = $(top_builddir)/libjson-c.la TESTS = test1.test test2.test test4.test testReplaceExisting.test \ *** ./json_tokener.c.ORIG Mon Jul 28 20:21:23 2014 --- ./json_tokener.c Mon Jul 28 20:38:31 2014 *************** *** 32,37 **** --- 32,41 ---- #include "json_tokener.h" #include "json_util.h" + #ifdef _AIX + #include + #endif + #ifdef HAVE_LOCALE_H #include #endif /* HAVE_LOCALE_H */ *************** *** 52,58 **** /* Use C99 NAN by default; if not available, nan("") should work too. */ #ifndef NAN ! #define NAN nan("") #endif /* !NAN */ static const char json_null_str[] = "null"; --- 56,63 ---- /* Use C99 NAN by default; if not available, nan("") should work too. */ #ifndef NAN ! //#define NAN nan("") ! #define NAN strtod("NAN()", NULL) #endif /* !NAN */ static const char json_null_str[] = "null"; No differences encountered *** ./Makefile.in.ORIG Mon Jul 28 20:39:43 2014 --- ./Makefile.in Mon Jul 28 20:39:52 2014 *************** *** 128,134 **** am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(pkgconfigdir)" \ "$(DESTDIR)$(libjson_cincludedir)" LTLIBRARIES = $(lib_LTLIBRARIES) ! libjson_c_la_LIBADD = am_libjson_c_la_OBJECTS = arraylist.lo debug.lo json_c_version.lo \ json_object.lo json_object_iterator.lo json_tokener.lo \ json_util.lo linkhash.lo printbuf.lo random_seed.lo --- 128,134 ---- am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(pkgconfigdir)" \ "$(DESTDIR)$(libjson_cincludedir)" LTLIBRARIES = $(lib_LTLIBRARIES) ! libjson_c_la_LIBADD = -lm am_libjson_c_la_OBJECTS = arraylist.lo debug.lo json_c_version.lo \ json_object.lo json_object_iterator.lo json_tokener.lo \ json_util.lo linkhash.lo printbuf.lo random_seed.lo