Control: tag -1 patch Here's a patch that fixes the FTBFS issue (which also happened on sparc once leveldb was available).
I'm uploading 0.48-1.2 to DELAYED/5, feel free to reschedule or cancel as you see fit. Cheers, -Hilko
diff -Nru ceph-0.48/debian/changelog ceph-0.48/debian/changelog --- ceph-0.48/debian/changelog 2013-07-02 22:50:41.000000000 +0200 +++ ceph-0.48/debian/changelog 2013-08-27 20:21:25.000000000 +0200 @@ -1,3 +1,11 @@ +ceph (0.48-1.2) unstable; urgency=low + + * Non-maintainer upload + * Link with libboost_system, add necessary build-dependency (Closes: + #720798) + + -- Hilko Bengen <ben...@debian.org> Tue, 27 Aug 2013 20:18:59 +0200 + ceph (0.48-1.1) unstable; urgency=low * Non-maintainer upload, fixing two RC bugs: diff -Nru ceph-0.48/debian/control ceph-0.48/debian/control --- ceph-0.48/debian/control 2013-07-02 22:50:41.000000000 +0200 +++ ceph-0.48/debian/control 2013-08-27 20:20:00.000000000 +0200 @@ -6,7 +6,7 @@ Vcs-Browser: https://github.com/ceph/ceph Maintainer: Laszlo Boszormenyi (GCS) <g...@debian.hu> Uploaders: Sage Weil <s...@newdream.net> -Build-Depends: debhelper (>= 6.0.7~), dpkg-dev (>= 1.16.1~), python-support (>= 0.5.3), autotools-dev, autoconf, automake, libtool, pkg-config, libfuse-dev, libboost-dev, libedit-dev, libnss3-dev, libexpat1-dev, libfcgi-dev, libatomic-ops-dev, libgoogle-perftools-dev [i386 amd64], libkeyutils-dev, python (>= 2.6.6-3~), python-dev, libcurl4-gnutls-dev, uuid-dev, libaio-dev, libsnappy-dev, libleveldb-dev, libs3-dev +Build-Depends: debhelper (>= 6.0.7~), dpkg-dev (>= 1.16.1~), python-support (>= 0.5.3), autotools-dev, autoconf, automake, libtool, pkg-config, libfuse-dev, libboost-dev, libboost-system-dev, libedit-dev, libnss3-dev, libexpat1-dev, libfcgi-dev, libatomic-ops-dev, libgoogle-perftools-dev [i386 amd64], libkeyutils-dev, python (>= 2.6.6-3~), python-dev, libcurl4-gnutls-dev, uuid-dev, libaio-dev, libsnappy-dev, libleveldb-dev, libs3-dev Build-Conflicts: libcrypto++-dev Standards-Version: 3.9.3 diff -Nru ceph-0.48/debian/patches/boost_system.patch ceph-0.48/debian/patches/boost_system.patch --- ceph-0.48/debian/patches/boost_system.patch 1970-01-01 01:00:00.000000000 +0100 +++ ceph-0.48/debian/patches/boost_system.patch 2013-08-27 20:20:00.000000000 +0200 @@ -0,0 +1,13 @@ +Index: ceph/src/Makefile.am +=================================================================== +--- ceph.orig/src/Makefile.am 2013-08-27 20:14:47.055334009 +0200 ++++ ceph/src/Makefile.am 2013-08-27 20:16:32.252729453 +0200 +@@ -42,7 +42,7 @@ + $(srcdir)/test/encoding/check-generated.sh + $(srcdir)/test/encoding/readable.sh ../ceph-object-corpus + +-EXTRALIBS = -luuid ++EXTRALIBS = -luuid -lboost_system + if FREEBSD + EXTRALIBS += -lexecinfo + endif diff -Nru ceph-0.48/debian/patches/series ceph-0.48/debian/patches/series --- ceph-0.48/debian/patches/series 2013-07-02 22:50:41.000000000 +0200 +++ ceph-0.48/debian/patches/series 2013-08-27 20:21:25.000000000 +0200 @@ -1,4 +1,5 @@ no_leveldb_inside.patch make_rebuildable.patch link-librados-config-with-pthreads.patch -fix-bashism.patch \ No newline at end of file +fix-bashism.patch +boost_system.patch