Patches: Bernhard Reiter (configure issues)
Neil Spring (const fixes)
+ Rick Poyner (pipe handling, bug fixes)
+ Dietmar Petras (bug fixes)
+ Gilgamesh Nootebos (bug fixes)
Design suggestions:
Fred Drake (checked fixture functions)
-2002-05-24 Sven Neumann <sven@convergence.de>
+2002-10-16 13:39 neo23
- * Made 0.8.3 Release.
+ * src/check_msg.c, tests/check_check_msg.c: Applied a patch from
+ Rick Poyner that changes the pipe used for IPC to use a temporary
+ file instead of stdin/stdout. This fixes the long-standing problem
+ that the pipe used to fill up when too many fail_unless() were
+ used. (#482012).
+
+2002-10-09 18:57 neo23
+
+ * src/check.h.in: Applied a patch from Rick Poyner that fixes a
+ typo which broke check for C++ compilers (bug #601397).
+
+2002-08-16 19:41 neo23
+
+ * src/: check.c, check_msg.c, check_msg.h, check_pack.c,
+ check_pack.h: Applied a patch from Dietmar Petras <dpetras@gmx.de>
+ that plugs some memory leaks.
+
+2002-07-10 04:37 neo23
+
+ * .cvsignore, autogen.sh: Call aclocal from autogen.sh.
+
+2002-07-10 04:32 neo23
+
+ * aclocal.m4, depcomp, install-sh, missing, mkinstalldirs: Removed
+ files generated by automake.
+
+2002-06-16 14:25 neo23
+
+ * debian/changelog: applied patch from Arien Malec to fix build of
+ Debian packages
+
+2002-05-24 17:04 neo23
+
+ * ChangeLog: Made 0.8.3 Release.
2002-05-24 17:00 neo23
CHECK_MAJOR_VERSION=0
CHECK_MINOR_VERSION=8
-CHECK_MICRO_VERSION=3
+CHECK_MICRO_VERSION=4
CHECK_VERSION=$CHECK_MAJOR_VERSION.$CHECK_MINOR_VERSION.$CHECK_MICRO_VERSION
AM_INIT_AUTOMAKE(check,$CHECK_VERSION)
CK_LYX_LINUXDOC([have_lyx="yes"],[have_lyx="no"])
AC_CHECK_PROG(have_sgmltools,sgml2html,yes)
if test x"$have_sgmltools" != "xyes" -o x"$have_lyx" != "xyes" ; then
- AC_MSG_WARN([required tools not found, not building docs])
+ AC_MSG_WARN([required tools not found, not building docs])
fi
-AM_CONDITIONAL(MAKE_DOC, test x"$have_lyx" = "xyes" -a x"$have_sgmltools" = "xyes" )
+AM_CONDITIONAL(MAKE_DOC,
+ test x"$have_lyx" = "xyes" -a x"$have_sgmltools" = "xyes" )
dnl Checks for libraries.
dnl Checks for header files.
AC_HEADER_STDC
AC_HEADER_SYS_WAIT
AC_CHECK_HEADERS(unistd.h)
-AM_CONFIG_HEADER(config.h)
dnl Checks for typedefs, structures, and compiler characteristics.
AC_C_CONST
AC_FUNC_VPRINTF
AC_CHECK_FUNCS([strerror])
+AM_CONFIG_HEADER(config.h)
+
AC_OUTPUT(Makefile
src/Makefile
src/check.h