diff options
author | Gary Lowell <glowell@inktank.com> | 2013-04-16 21:14:18 -0700 |
---|---|---|
committer | Gary Lowell <glowell@inktank.com> | 2013-04-18 08:24:37 -0700 |
commit | 86c1ea1156b25e1a7038132a2319cbf6a47c92da (patch) | |
tree | 6fa90f9c4f2325a3623b22dfe71a96d160dc805b | |
parent | b343c5251a11a3c6f4d31fe9f2503ee3dfa06904 (diff) | |
download | ceph-86c1ea1156b25e1a7038132a2319cbf6a47c92da.tar.gz |
build: Add new package dependencies
Add libboost-system-dev (bug #4725).
Add hdparm to rpm installation requirements. The hdparm
command is used to determin if write-caching is enabled on
the journal device.
Signed-off-by: Gary Lowell <gary.lowell@inktank.com>
-rw-r--r-- | ceph.spec.in | 1 | ||||
-rw-r--r-- | debian/control | 7 |
2 files changed, 5 insertions, 3 deletions
diff --git a/ceph.spec.in b/ceph.spec.in index 1e5d7f5b818..e52b307ecd4 100644 --- a/ceph.spec.in +++ b/ceph.spec.in @@ -29,6 +29,7 @@ Requires: cryptsetup Requires: parted Requires: util-linux Requires: python-argparse +Requires: hdparm Requires(post): binutils BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRequires: gcc-c++ diff --git a/debian/control b/debian/control index 4a0d0ce9bc3..ddaf96b9f0a 100644 --- a/debian/control +++ b/debian/control @@ -16,9 +16,10 @@ Build-Depends: autoconf, junit4, libaio-dev, libatomic-ops-dev, - libboost-dev (>= 1.42), - libboost-program-options-dev, - libboost-thread-dev, + libboost-dev (>= 1.42~), + libboost-program-options-dev (>= 1.42~), + libboost-thread-dev (>= 1.42~), + libboost-system-dev (>= 1.42~), libcurl4-gnutls-dev, libedit-dev, libexpat1-dev, |