~james-page/ubuntu/vivid/ceph/0.93

« back to all changes in this revision

Viewing changes to .pc/arch.patch/configure.ac

  • Committer: Package Import Robot
  • Author(s): James Page
  • Date: 2014-07-30 10:15:40 UTC
  • mfrom: (0.1.29 sid)
  • Revision ID: package-import@ubuntu.com-20140730101540-b7gsn9jqkye4a5ty
Tags: 0.80.5-1
* New upstream stable release:
  - d/p/firefly-post-release.patch: Dropped, no longer required.
  - d/lib{rados2,cephfs1}.symbols: Update with new symbols.

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
# VERSION define is not used by the code.  It gets a version string
9
9
# from 'git describe'; see src/ceph_ver.[ch]
10
10
 
11
 
AC_INIT([ceph], [0.80.4], [ceph-devel@vger.kernel.org])
 
11
AC_INIT([ceph], [0.80.5], [ceph-devel@vger.kernel.org])
12
12
 
13
13
# Create release string.  Used with VERSION for RPMs.
14
14
RPM_RELEASE=0
490
490
AM_CONDITIONAL(WITH_OCF, [ test "$with_ocf" = "yes" ])
491
491
 
492
492
# check is snappy-devel is installed, needed by leveldb
493
 
AC_CHECK_LIB([snappy], [snappy_compress], [], [AC_MSG_FAILURE([libsnappy not found])])
 
493
AC_CHECK_LIB([snappy], [snappy_compress], [true], [AC_MSG_FAILURE([libsnappy not found])])
494
494
# use system leveldb
495
 
AC_CHECK_LIB([leveldb], [leveldb_open], [], [AC_MSG_FAILURE([libleveldb not found])], [-lsnappy -lpthread])
 
495
AC_CHECK_LIB([leveldb], [leveldb_open], [true], [AC_MSG_FAILURE([libleveldb not found])], [-lsnappy -lpthread])
496
496
# see if we can use bloom filters with leveldb
497
497
AC_LANG_PUSH([C++])
498
498
AC_CHECK_HEADER([leveldb/filter_policy.h], [AC_DEFINE([HAVE_LEVELDB_FILTER_POLICY], [1], [Defined if LevelDB supports bloom filters ])])