[Expat-checkins] expat Changes, 1.41, 1.42 Makefile.in, 1.48, 1.49 README, 1.27, 1.28 configure.in, 1.38, 1.39

Fred L. Drake fdrake at users.sourceforge.net
Thu Jan 27 07:27:59 CET 2005


Update of /cvsroot/expat/expat
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14049

Modified Files:
	Changes Makefile.in README configure.in 
Log Message:
remove use of the check library; always use our own testing package
(this reduces variables and simplifies the build process)


Index: Changes
===================================================================
RCS file: /cvsroot/expat/expat/Changes,v
retrieving revision 1.41
retrieving revision 1.42
diff -u -d -r1.41 -r1.42
--- Changes	23 Jul 2004 04:48:36 -0000	1.41
+++ Changes	27 Jan 2005 06:27:57 -0000	1.42
@@ -1,3 +1,7 @@
+Release 1.95.9 TBD
+        - We no longer use the "check" library for C unit testing; we
+          always use the (partial) internal implementation of the API.
+
 Release 1.95.8 Fri Jul 23 2004
         - Major new feature: suspend/resume.  Handlers can now request
           that a parse be suspended for later resumption or aborted

Index: Makefile.in
===================================================================
RCS file: /cvsroot/expat/expat/Makefile.in,v
retrieving revision 1.48
retrieving revision 1.49
diff -u -d -r1.48 -r1.49
--- Makefile.in	17 Dec 2004 18:08:08 -0000	1.48
+++ Makefile.in	27 Jan 2005 06:27:57 -0000	1.49
@@ -151,8 +151,8 @@
 tests/chardata.o: tests/chardata.c tests/chardata.h
 tests/minicheck.o: tests/minicheck.c tests/minicheck.h
 tests/runtests.o: tests/runtests.c tests/chardata.h
-tests/runtests: tests/runtests.o tests/chardata.o @MINICHECK_OBJECT@ $(LIBRARY)
-	$(LINK_EXE) $^ @CHECK_LIBRARY@
+tests/runtests: tests/runtests.o tests/chardata.o tests/minicheck.o $(LIBRARY)
+	$(LINK_EXE) $^
 
 tests/xmlts.zip:
 	wget --output-document=tests/xmlts.zip \

Index: README
===================================================================
RCS file: /cvsroot/expat/expat/README,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -d -r1.27 -r1.28
--- README	16 Jul 2004 02:10:56 -0000	1.27
+++ README	27 Jan 2005 06:27:57 -0000	1.28
@@ -92,13 +92,6 @@
 
         PATH=/usr/ccs/bin:$PATH make
 
-The unit and regression tests for Expat can use the "check" library on
-Unix; more information is available at http://check.sourceforge.net/,
-and downloadable packages are available from the library's project
-page on SourceForge: http://sourceforge.net/projects/check/.  If the
-check library is not available, a greatly abbreviated implementation
-of the check API is used.
-
 When using Expat with a project using autoconf for configuration, you
 can use the probing macro in conftools/expat.m4 to determine how to
 include Expat.  See the comments at the top of that file for more

Index: configure.in
===================================================================
RCS file: /cvsroot/expat/expat/configure.in,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -d -r1.38 -r1.39
--- configure.in	30 Apr 2004 03:18:09 -0000	1.38
+++ configure.in	27 Jan 2005 06:27:57 -0000	1.39
@@ -103,14 +103,6 @@
 fi
 AC_SUBST(FILEMAP)
 
-dnl Only needed for regression tests:
-AC_SUBST(MINICHECK_OBJECT)
-AC_SUBST(CHECK_LIBRARY)
-AC_CHECK_HEADERS(check.h)
-AC_CHECK_HEADER(check.h,
-                CHECK_LIBRARY=-lcheck,
-                MINICHECK_OBJECT=tests/minicheck.o)
-
 dnl Some basic configuration:
 AC_DEFINE([XML_NS], 1,
           [Define to make XML Namespaces functionality available.])



More information about the Expat-checkins mailing list