summaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorRene Engelhard <rene@openoffice.org>2010-03-04 09:41:54 +0100
committerRene Engelhard <rene@openoffice.org>2010-03-04 09:41:54 +0100
commitc4a502ee876a2bdb71bb8ec07af188cbb41f1ea6 (patch)
tree1898f3aca0221255c1ff8fc268c2910128e95c74 /configure.in
parentsb118: s/+=/=/ in libs.mk, thanks sb (diff)
downloadcore-c4a502ee876a2bdb71bb8ec07af188cbb41f1ea6.tar.gz
core-c4a502ee876a2bdb71bb8ec07af188cbb41f1ea6.zip
sb118: check whether cppunit is >= 1.12.1
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in5
1 files changed, 4 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index 6003dbc396ff..211ed3d75bc5 100644
--- a/configure.in
+++ b/configure.in
@@ -3589,7 +3589,10 @@ if test -n "$with_system_cppunit" -o -n "$with_system_libs" && \
test "$with_system_cppunit" != "no"; then
AC_MSG_RESULT([external])
SYSTEM_CPPUNIT=YES
- PKG_CHECK_MODULES( CPPUNIT, cppunit )
+ # might work for earlier, too but go sure. We didn't have
+ # a system-cppunit before the first version using a proper cppunit
+ # (and that being 1.12.1) anyway
+ PKG_CHECK_MODULES( CPPUNIT, cppunit >= 1.12.1 )
else
AC_MSG_RESULT([internal])
SYSTEM_CPPUNIT=NO