]> granicus.if.org Git - check/commitdiff
Bumped version number to 0.8.4. Updated AUTHORS and ChangeLog.
authorneo23 <neo23@64e312b2-a51f-0410-8e61-82d0ca0eb02a>
Wed, 16 Oct 2002 11:47:44 +0000 (11:47 +0000)
committerneo23 <neo23@64e312b2-a51f-0410-8e61-82d0ca0eb02a>
Wed, 16 Oct 2002 11:47:44 +0000 (11:47 +0000)
git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@151 64e312b2-a51f-0410-8e61-82d0ca0eb02a

check/AUTHORS
check/ChangeLog
check/configure.in

index 3bb521c111d9c76c7edda1d2663c0d01ba7a49d8..d78cded544f6efd730a1485ec07cf06657036377 100644 (file)
@@ -4,6 +4,9 @@ Maintainer:  Sven Neumann <sven@convergence.de>
 
 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)
index 1aae18a438c85f8623d65b167e438221de0d79c5..437b77c2b68617a1529cba36bb2169503c1b6e8e 100644 (file)
@@ -1,6 +1,39 @@
-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
 
index daddcd5a7b7752de31818f4bcea520ae41bbf551..20e952f0ed4b8221d7dcba534e3e0eff9dcba193 100644 (file)
@@ -4,7 +4,7 @@ AC_INIT(src/check.c)
 
 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)
@@ -35,16 +35,16 @@ fi
 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
@@ -61,6 +61,8 @@ dnl AC_FUNC_MALLOC
 AC_FUNC_VPRINTF
 AC_CHECK_FUNCS([strerror])
 
+AM_CONFIG_HEADER(config.h)
+
 AC_OUTPUT(Makefile
          src/Makefile
          src/check.h