Skip to content

Commit

Permalink
prepare for 0.99.0 release
Browse files Browse the repository at this point in the history
This is a bit dirty, as we needed to work around some issues
inherited from json-c. I had expected that json-c would successfully
do a release built, and as I needed things quickly, I worked around
thing to get it going. For 1.0.0 we'll do a cleanup.
  • Loading branch information
rgerhards committed Dec 17, 2015
1 parent f06052c commit f189a25
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion ChangeLog
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
1.0
0.99.0 2015-12-18
- bugfix: reference counting was not thread-safe

NEXT.VERSION
Expand Down
5 changes: 3 additions & 2 deletions Makefile.am
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

EXTRA_DIST = README.html README-WIN32.html config.h.win32 doc json-c.vcproj
SUBDIRS = . tests
EXTRA_DIST = README.html README-WIN32.html config.h.win32 json-c.vcproj
SUBDIRS = . # tests

lib_LTLIBRARIES = libfastjson.la

Expand All @@ -11,6 +11,7 @@ libfastjsonincludedir = $(includedir)/libfastjson
libfastjsoninclude_HEADERS = \
arraylist.h \
atomic.h \
math_compat.h \
bits.h \
debug.h \
json.h \
Expand Down
5 changes: 3 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -110,17 +110,18 @@ AS_IF([test "x$enable_Bsymbolic" = "xcheck"],
AS_IF([test "x$enable_Bsymbolic" = "xyes"], [JSON_BSYMBOLIC_LDFLAGS=-Wl[,]-Bsymbolic-functions])
AC_SUBST(JSON_BSYMBOLIC_LDFLAGS)

AX_APPEND_COMPILE_FLAGS([-Wall -Werror -Wno-error=deprecated-declarations])
#AX_APPEND_COMPILE_FLAGS([-Wall -Werror -Wno-error=deprecated-declarations])
AX_APPEND_COMPILE_FLAGS([-Wall -Wno-error=deprecated-declarations])
AX_APPEND_COMPILE_FLAGS([-Wextra -Wwrite-string -Wno-unused-parameter])
AX_APPEND_COMPILE_FLAGS([-std=gnu99])
AX_APPEND_COMPILE_FLAGS([-D_GNU_SOURCE -D_REENTRANT])

AC_CONFIG_FILES([
Makefile
libfastjson.pc
tests/Makefile
libfastjson-uninstalled.pc
])
#tests/Makefile

AC_OUTPUT

0 comments on commit f189a25

Please sign in to comment.