Thu Aug 11 15:01:47 2011 Google Inc. <opensource@google.com>

* google-perftools: version 1.8.2 release
	* Fixed calculation of patchlevel, 'make check' should all pass again


git-svn-id: http://gperftools.googlecode.com/svn/trunk@115 6b5cf1ce-ec42-a296-1ba9-69fdba395a50
This commit is contained in:
csilvers 2011-08-11 22:06:22 +00:00
parent ffcdf7bf5a
commit f633b40ba5
6 changed files with 40 additions and 22 deletions

View File

@ -1,6 +1,11 @@
Thu Aug 11 15:01:47 2011 Google Inc. <opensource@google.com>
* google-perftools: version 1.8.2 release
* Fixed calculation of patchlevel, 'make check' should all pass again
Tue Jul 26 20:57:51 2011 Google Inc. <opensource@google.com>
* google-perftools: version 1.8 release
* google-perftools: version 1.8.1 release
* Added an #include to fix compile breakage on latest gcc's
* Removed an extra , in the configure.ac script

15
NEWS
View File

@ -1,4 +1,17 @@
== 26 July 2011 ==
== 11 August 2011 ==
I've just released perftools 1.8.2
I was incorrectly calculating the patch-level in the configuration
step, meaning the TC_VERSION_PATCH #define in tcmalloc.h was wrong.
Since the testing framework checks for this, it was failing. Now it
should work again. This time, I was careful to re-run my tests after
upping the version number. :-)
If you don't care about the TC_VERSION_PATCH #define, there's no
reason to upgrae.
=== 26 July 2011 ===
I've just released perftools 1.8.1

26
configure vendored
View File

@ -1,6 +1,6 @@
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.65 for google-perftools 1.8.1.
# Generated by GNU Autoconf 2.65 for google-perftools 1.8.2.
#
# Report bugs to <opensource@google.com>.
#
@ -701,8 +701,8 @@ MAKEFLAGS=
# Identity of this package.
PACKAGE_NAME='google-perftools'
PACKAGE_TARNAME='google-perftools'
PACKAGE_VERSION='1.8.1'
PACKAGE_STRING='google-perftools 1.8.1'
PACKAGE_VERSION='1.8.2'
PACKAGE_STRING='google-perftools 1.8.2'
PACKAGE_BUGREPORT='opensource@google.com'
PACKAGE_URL=''
@ -1472,7 +1472,7 @@ if test "$ac_init_help" = "long"; then
# Omit some internal or obsolete options to make the list less imposing.
# This message is too long to be a string in the A/UX 3.1 sh.
cat <<_ACEOF
\`configure' configures google-perftools 1.8.1 to adapt to many kinds of systems.
\`configure' configures google-perftools 1.8.2 to adapt to many kinds of systems.
Usage: $0 [OPTION]... [VAR=VALUE]...
@ -1543,7 +1543,7 @@ fi
if test -n "$ac_init_help"; then
case $ac_init_help in
short | recursive ) echo "Configuration of google-perftools 1.8.1:";;
short | recursive ) echo "Configuration of google-perftools 1.8.2:";;
esac
cat <<\_ACEOF
@ -1653,7 +1653,7 @@ fi
test -n "$ac_init_help" && exit $ac_status
if $ac_init_version; then
cat <<\_ACEOF
google-perftools configure 1.8.1
google-perftools configure 1.8.2
generated by GNU Autoconf 2.65
Copyright (C) 2009 Free Software Foundation, Inc.
@ -2238,7 +2238,7 @@ cat >config.log <<_ACEOF
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
It was created by google-perftools $as_me 1.8.1, which was
It was created by google-perftools $as_me 1.8.2, which was
generated by GNU Autoconf 2.65. Invocation command line was
$ $0 $@
@ -2590,7 +2590,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
# 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
TCMALLOC_SO_VERSION=2:1:2
TCMALLOC_SO_VERSION=2:2:2
PROFILER_SO_VERSION=1:2:1
@ -2983,7 +2983,7 @@ fi
# Define the identity of the package.
PACKAGE='google-perftools'
VERSION='1.8.1'
VERSION='1.8.2'
cat >>confdefs.h <<_ACEOF
@ -3130,8 +3130,8 @@ ac_config_headers="$ac_config_headers src/config.h"
# Export the version information (for tc_version and friends)
TC_VERSION_MAJOR=`expr "$PACKAGE_VERSION" : '\([0-9]*\)'`
TC_VERSION_MINOR=`expr "$PACKAGE_VERSION" : '[^.]*\.\([0-9]*\)'`
TC_VERSION_PATCH=`expr "$PACKAGE_VERSION" : '[^.0-9]*\([^0-9]*\)$'`
TC_VERSION_MINOR=`expr "$PACKAGE_VERSION" : '[0-9]*\.\([0-9]*\)'`
TC_VERSION_PATCH=`expr "$PACKAGE_VERSION" : '[0-9]*\.[0-9]*\(.*\)$'`
@ -17747,7 +17747,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
# report actual input values of CONFIG_FILES etc. instead of their
# values after options handling.
ac_log="
This file was extended by google-perftools $as_me 1.8.1, which was
This file was extended by google-perftools $as_me 1.8.2, which was
generated by GNU Autoconf 2.65. Invocation command line was
CONFIG_FILES = $CONFIG_FILES
@ -17813,7 +17813,7 @@ _ACEOF
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
ac_cs_version="\\
google-perftools config.status 1.8.1
google-perftools config.status 1.8.2
configured by $0, generated by GNU Autoconf 2.65,
with options \\"\$ac_cs_config\\"

View File

@ -4,10 +4,10 @@
# make sure we're interpreted by some minimal autoconf
AC_PREREQ(2.57)
AC_INIT(google-perftools, 1.8.1, opensource@google.com)
AC_INIT(google-perftools, 1.8.2, opensource@google.com)
# 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
TCMALLOC_SO_VERSION=2:1:2
TCMALLOC_SO_VERSION=2:2:2
PROFILER_SO_VERSION=1:2:1
AC_SUBST(TCMALLOC_SO_VERSION)
@ -23,8 +23,8 @@ AM_CONFIG_HEADER(src/config.h)
# Export the version information (for tc_version and friends)
TC_VERSION_MAJOR=`expr "$PACKAGE_VERSION" : '\([[0-9]]*\)'`
TC_VERSION_MINOR=`expr "$PACKAGE_VERSION" : '[[^.]]*\.\([[0-9]]*\)'`
TC_VERSION_PATCH=`expr "$PACKAGE_VERSION" : '[[^.0-9]]*\([[^0-9]]*\)$'`
TC_VERSION_MINOR=`expr "$PACKAGE_VERSION" : '[[0-9]]*\.\([[0-9]]*\)'`
TC_VERSION_PATCH=`expr "$PACKAGE_VERSION" : '[[0-9]]*\.[[0-9]]*\(.*\)$'`
AC_SUBST(TC_VERSION_MAJOR)
AC_SUBST(TC_VERSION_MINOR)
AC_SUBST(TC_VERSION_PATCH)

View File

@ -72,7 +72,7 @@ use strict;
use warnings;
use Getopt::Long;
my $PPROF_VERSION = "1.8.1";
my $PPROF_VERSION = "1.8.2";
# These are the object tools we use which can come from a
# user-specified location using --tools, from the PPROF_TOOLS

View File

@ -222,7 +222,7 @@
#define PACKAGE_NAME "google-perftools"
/* Define to the full name and version of this package. */
#define PACKAGE_STRING "google-perftools 1.8.1"
#define PACKAGE_STRING "google-perftools 1.8.2"
/* Define to the one symbol short name of this package. */
#define PACKAGE_TARNAME "google-perftools"
@ -231,7 +231,7 @@
#undef PACKAGE_URL
/* Define to the version of this package. */
#define PACKAGE_VERSION "1.8.1"
#define PACKAGE_VERSION "1.8.2"
/* How to access the PC from a struct ucontext */
#undef PC_FROM_UCONTEXT