bumped version to 2.2
This commit is contained in:
parent
cdf8e1e932
commit
846b775dfa
|
@ -4,10 +4,10 @@
|
||||||
# make sure we're interpreted by some minimal autoconf
|
# make sure we're interpreted by some minimal autoconf
|
||||||
AC_PREREQ([2.59])
|
AC_PREREQ([2.59])
|
||||||
|
|
||||||
AC_INIT([gperftools],[2.1.90],[google-perftools@googlegroups.com])
|
AC_INIT([gperftools],[2.2],[google-perftools@googlegroups.com])
|
||||||
# Update this value for every release! (A:B:C will map to foo.so.(A-C).C.B)
|
# Update this value for every release! (A:B:C will map to foo.so.(A-C).C.B)
|
||||||
# http://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html
|
# http://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html
|
||||||
TCMALLOC_SO_VERSION=6:0:2
|
TCMALLOC_SO_VERSION=6:1:2
|
||||||
PROFILER_SO_VERSION=4:0:4
|
PROFILER_SO_VERSION=4:0:4
|
||||||
|
|
||||||
AC_SUBST(TCMALLOC_SO_VERSION)
|
AC_SUBST(TCMALLOC_SO_VERSION)
|
||||||
|
|
|
@ -226,7 +226,7 @@
|
||||||
#define PACKAGE_NAME "gperftools"
|
#define PACKAGE_NAME "gperftools"
|
||||||
|
|
||||||
/* Define to the full name and version of this package. */
|
/* Define to the full name and version of this package. */
|
||||||
#define PACKAGE_STRING "gperftools 2.1.90"
|
#define PACKAGE_STRING "gperftools 2.2"
|
||||||
|
|
||||||
/* Define to the one symbol short name of this package. */
|
/* Define to the one symbol short name of this package. */
|
||||||
#define PACKAGE_TARNAME "gperftools"
|
#define PACKAGE_TARNAME "gperftools"
|
||||||
|
@ -235,7 +235,7 @@
|
||||||
#undef PACKAGE_URL
|
#undef PACKAGE_URL
|
||||||
|
|
||||||
/* Define to the version of this package. */
|
/* Define to the version of this package. */
|
||||||
#define PACKAGE_VERSION "2.1.90"
|
#define PACKAGE_VERSION "2.2"
|
||||||
|
|
||||||
/* How to access the PC from a struct ucontext */
|
/* How to access the PC from a struct ucontext */
|
||||||
#undef PC_FROM_UCONTEXT
|
#undef PC_FROM_UCONTEXT
|
||||||
|
|
|
@ -50,9 +50,9 @@
|
||||||
|
|
||||||
// Define the version number so folks can check against it
|
// Define the version number so folks can check against it
|
||||||
#define TC_VERSION_MAJOR 2
|
#define TC_VERSION_MAJOR 2
|
||||||
#define TC_VERSION_MINOR 1
|
#define TC_VERSION_MINOR 2
|
||||||
#define TC_VERSION_PATCH ".90"
|
#define TC_VERSION_PATCH ""
|
||||||
#define TC_VERSION_STRING "gperftools 2.1.90"
|
#define TC_VERSION_STRING "gperftools 2.2"
|
||||||
|
|
||||||
#include <stdlib.h> // for struct mallinfo, if it's defined
|
#include <stdlib.h> // for struct mallinfo, if it's defined
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue