+1.0.10
+* --disable-assert has been removed from configure, and --enable-assert has been added in its place.
+
+
1.0.9 Wed Jul 4 22:46:19 EDT 2012
* Faster close on socket.
* Instance allocation is now seperated from server interface. This should allow for a better preservation of ABI compliance from now on.
AC_CHECK_HEADERS(assert.h)
AC_MSG_CHECKING([whether to enable assertions])
AC_ARG_ENABLE([assert],
- [AS_HELP_STRING([--disable-assert],
- [Turn off assertions])],
- [ac_cv_assert="no"],
- [ac_cv_assert="yes"])
+ [AS_HELP_STRING([--enable-assert],
+ [Turn on assertions])],
+ [ac_cv_assert="yes"],
+ [ac_cv_assert="no"])
AC_MSG_RESULT([$ac_cv_assert])
AS_IF([test "$ac_cv_assert" = "no"],