forked from ceph/ceph
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Conflicts: src/osdc/Journaler.cc
- Loading branch information
Showing
8 changed files
with
28 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ AC_PREREQ(2.59) | |
# NOTE: This version is _only_ used for naming the tarball. The | ||
# VERSION define is not used by the code. It gets a version string | ||
# from 'git describe'; see src/ceph_ver.[ch] | ||
AC_INIT([ceph], [0.26rc], [[email protected]]) | ||
AC_INIT([ceph], [0.26], [[email protected]]) | ||
|
||
AC_CONFIG_SUBDIRS([src/gtest]) | ||
|
||
|
@@ -163,9 +163,9 @@ AM_CONDITIONAL(WITH_FUSE, [test "$HAVE_LIBFUSE" = "1"]) | |
|
||
# tcmalloc? | ||
AC_ARG_WITH([tcmalloc], | ||
[AS_HELP_STRING([--without-tcmalloc], [disable tcmalloc for memory allocations])], | ||
[AS_HELP_STRING([--with--tcmalloc], [use tcmalloc instead of ptmallc])], | ||
[], | ||
[with_tcmalloc=yes]) | ||
[with_tcmalloc=check]) | ||
TCMALLOC= | ||
AS_IF([test "x$with_tcmalloc" != xno], | ||
[AC_CHECK_LIB([tcmalloc], [malloc], | ||
|
@@ -174,8 +174,11 @@ AS_IF([test "x$with_tcmalloc" != xno], | |
[Define if you have tcmalloc]) | ||
HAVE_LIBTCMALLOC=1 | ||
], | ||
[AC_MSG_FAILURE( | ||
[no tcmalloc found (use --without-tcmalloc to disable)])])]) | ||
[if test "x$with_tcmalloc" != xcheck; then | ||
AC_MSG_FAILURE( | ||
[--with-tcmalloc was given but test failed]) | ||
fi | ||
])]) | ||
AM_CONDITIONAL(WITH_TCMALLOC, [test "$HAVE_LIBTCMALLOC" = "1"]) | ||
|
||
# jni? | ||
|
@@ -295,7 +298,7 @@ AC_ARG_WITH([gtk2], | |
[with_gtk2=check]) | ||
have_gtk2=no | ||
AS_IF([test "x$with_gtk2" != "xno"], | ||
[PKG_CHECK_MODULES(GTKMM, [gtkmm-2.4 >= 2.13], | ||
[PKG_CHECK_MODULES(GTKMM, [gtkmm-2.4 >= 2.12], | ||
[have_gtk2=yes | ||
AC_DEFINE([HAVE_GTK2], [1], [we have gtk2]) | ||
], | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
ceph (0.26~rc-1) experimental; urgency=low | ||
ceph (0.26-1) experimental; urgency=low | ||
|
||
* New upstream release. | ||
* Make Ceph Linux only and build on all Linux archs (closes: #614890), | ||
but only build-depend google-perftools on x86 and x64 archs only. | ||
* Correct section of libcrush1, librados1, librbd1 and libceph1 to libs. | ||
|
@@ -9,7 +10,7 @@ ceph (0.26~rc-1) experimental; urgency=low | |
* Rename librados1{,-dbg,-dev} packages to librados2{,-dbg,-dev} ones; | ||
conflict with and replace the former ones. | ||
|
||
-- Laszlo Boszormenyi (GCS) <[email protected]> Fri, 25 Mar 2011 19:42:11 +0100 | ||
-- Laszlo Boszormenyi (GCS) <[email protected]> Fri, 01 Apr 2011 16:28:11 +0100 | ||
|
||
ceph (0.25.2-1) experimental; urgency=low | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters