summaryrefslogtreecommitdiff
path: root/cpp
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2007-05-08 21:39:30 +0000
committerAlan Conway <aconway@apache.org>2007-05-08 21:39:30 +0000
commitcd782b5236faf9b91a5c15f169e330845f31be18 (patch)
tree6de25d498440856654500687207a163f1d20101a /cpp
parent6e8354720d6f9103128376492029e2cbdb729490 (diff)
downloadqpid-python-cd782b5236faf9b91a5c15f169e330845f31be18.tar.gz
* README: added libdaemon to yum instructions.
* configure.ac: clarified missing package error messages. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@536338 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp')
-rw-r--r--cpp/README2
-rw-r--r--cpp/configure.ac4
2 files changed, 3 insertions, 3 deletions
diff --git a/cpp/README b/cpp/README
index 4b415ed719..dee511c4c4 100644
--- a/cpp/README
+++ b/cpp/README
@@ -75,7 +75,7 @@ Building without documentaion does not require:
On linux most packages can be installed using your distribution's package
management tool. For example on Fedora:
- # yum install apr apr-devel boost boost-devel cppunit cppunit-devel
+ # yum install apr apr-devel boost boost-devel cppunit cppunit-devel libdaemon libdaemon-devel
# yum install pkgconfig doxygen graphviz help2man
diff --git a/cpp/configure.ac b/cpp/configure.ac
index 7a8a399689..748d15fe46 100644
--- a/cpp/configure.ac
+++ b/cpp/configure.ac
@@ -152,8 +152,8 @@ AC_SUBST(DOWNLOAD_URL)
# Check for headers from required devel kits.
missing=""
-AC_CHECK_HEADERS([libdaemon/daemon.h],,[missing="$missing libdaemon"])
-AC_CHECK_HEADERS([boost/shared_ptr.hpp],,[missing="$missing boost"])
+AC_CHECK_HEADERS([libdaemon/daemon.h],,[missing="$missing libdaemon development files"])
+AC_CHECK_HEADERS([boost/shared_ptr.hpp],,[missing="$missing boost developement files"])
test -z "$missing" ||
AC_MSG_ERROR([Missing required headers. Install the folowing packages or -devel rpms: $missing.])