summaryrefslogtreecommitdiff
path: root/cpp
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2008-12-22 20:20:38 +0000
committerAlan Conway <aconway@apache.org>2008-12-22 20:20:38 +0000
commitc6ca02e184d0c22aa458aa41cd4d007978adb302 (patch)
treed9215f58bc056254d507f1e0cd570cc74456876c /cpp
parentb2bb3d6b56750e4af4e9e838518803099fe9d52a (diff)
downloadqpid-python-c6ca02e184d0c22aa458aa41cd4d007978adb302.tar.gz
Corrected error message.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@728760 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp')
-rw-r--r--cpp/configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/configure.ac b/cpp/configure.ac
index 24588b0950..4fe143bedf 100644
--- a/cpp/configure.ac
+++ b/cpp/configure.ac
@@ -172,7 +172,7 @@ AC_ARG_WITH([cpg],
[AS_HELP_STRING([--with-cpg], [Build with CPG support for clustering.])],
[case "${withval}" in
yes) # yes - require dependencies
- test x$have_libcpg = xyes || AC_MSG_ERROR([libcpg not found, install openais or corosync])
+ test x$have_libcpg = xyes || AC_MSG_ERROR([libcpg not found, install openais-devel or corosync-devel])
test x$have_cpg_h = xyes || AC_MSG_ERROR([cpg.h not found, install openais-devel or corosync-devel])
with_cpg=yes
;;