Update of /cvsroot/mockpp/mockpp
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25124
Modified Files:
ChangeLog configure.in
Log Message:
release1.8.1
Index: ChangeLog
===================================================================
RCS file: /cvsroot/mockpp/mockpp/ChangeLog,v
retrieving revision 1.50
retrieving revision 1.51
diff -u -d -r1.50 -r1.51
--- ChangeLog 7 May 2005 17:00:55 -0000 1.50
+++ ChangeLog 21 May 2005 14:17:49 -0000 1.51
@@ -7,6 +7,7 @@
- install files below mockpp/production
- fix macro namespace
- rudimentary rpm generation
+ - added another path to detect cppunit
2005-05-06 1.8.0:
Index: configure.in
===================================================================
RCS file: /cvsroot/mockpp/mockpp/configure.in,v
retrieving revision 1.78
retrieving revision 1.79
diff -u -d -r1.78 -r1.79
--- configure.in 7 May 2005 12:44:33 -0000 1.78
+++ configure.in 21 May 2005 14:17:49 -0000 1.79
@@ -17,11 +17,11 @@
#
MOCKPP_MAJOR_VERSION=1
MOCKPP_MINOR_VERSION=8
-MOCKPP_PATCH_VERSION=0
+MOCKPP_PATCH_VERSION=1
-MOCKPP_MICRO_VERSION=28
-MOCKPP_INTERFACE_AGE=0
-MOCKPP_BINARY_AGE=6
+MOCKPP_MICRO_VERSION=29
+MOCKPP_INTERFACE_AGE=1
+MOCKPP_BINARY_AGE=7
MOCKPP_VERSION=$MOCKPP_MAJOR_VERSION.$MOCKPP_MINOR_VERSION.$MOCKPP_PATCH_VERSION
@@ -82,8 +82,8 @@
AC_CHECK_HEADERS(cppunit/Message.h)
# "Unusual" places for cppunit
-cppunit_inc_dirs="/usr/include /usr/local/include $CPPUNIT_ROOT"
-cppunit_lib_dirs="/usr/lib /usr/local/lib $CPPUNIT_ROOT"
+cppunit_inc_dirs="/usr/include /usr/local/include $CPPUNIT_ROOT $CPPUNIT_ROOT/include"
+cppunit_lib_dirs="/usr/lib /usr/local/lib $CPPUNIT_ROOT $CPPUNIT_ROOT/lib"
if test "ac_cv_header_cppunit_TestCase_h" != "yes"; then
echo "checking for cppunit/TestCase.h at $cppunit_inc_dirs"
|