Fri Aug 26 13:29:25 2011 Google Inc. <opensource@google.com>

* google-perftools: version 1.8.3 release
	* Added back the 'pthreads unsafe early' #define, needed for FreeBSD


git-svn-id: http://gperftools.googlecode.com/svn/trunk@117 6b5cf1ce-ec42-a296-1ba9-69fdba395a50
This commit is contained in:
csilvers 2011-08-26 21:08:59 +00:00
parent f633b40ba5
commit c2eedce2a7
7 changed files with 45 additions and 21 deletions

View File

@ -1,3 +1,8 @@
Fri Aug 26 13:29:25 2011 Google Inc. <opensource@google.com>
* google-perftools: version 1.8.3 release
* Added back the 'pthreads unsafe early' #define, needed for FreeBSD
Thu Aug 11 15:01:47 2011 Google Inc. <opensource@google.com>
* google-perftools: version 1.8.2 release

12
NEWS
View File

@ -1,4 +1,14 @@
== 11 August 2011 ==
== 26 August 2011 ==
I've just released perftools 1.8.3
The star-crossed 1.8 series continues; in 1.8.1, I had accidentally
removed some code that was needed for FreeBSD. (Without this code
many apps would crash at startup.) This release re-adds that code.
If you are not on FreeBSD, or are using FreeBSD with perftools 1.8 or
earlier, there is no need to upgrade.
=== 11 August 2011 ===
I've just released perftools 1.8.2

22
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.2.
# Generated by GNU Autoconf 2.65 for google-perftools 1.8.3.
#
# 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.2'
PACKAGE_STRING='google-perftools 1.8.2'
PACKAGE_VERSION='1.8.3'
PACKAGE_STRING='google-perftools 1.8.3'
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.2 to adapt to many kinds of systems.
\`configure' configures google-perftools 1.8.3 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.2:";;
short | recursive ) echo "Configuration of google-perftools 1.8.3:";;
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.2
google-perftools configure 1.8.3
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.2, which was
It was created by google-perftools $as_me 1.8.3, which was
generated by GNU Autoconf 2.65. Invocation command line was
$ $0 $@
@ -2983,7 +2983,7 @@ fi
# Define the identity of the package.
PACKAGE='google-perftools'
VERSION='1.8.2'
VERSION='1.8.3'
cat >>confdefs.h <<_ACEOF
@ -17056,6 +17056,8 @@ $as_echo "#define PERFTOOLS_DLL_DECL /**/" >>confdefs.h
# http://code.google.com/p/google-perftools/issues/detail?id=246
# MinGW uses autoconf, but also needs the windows shim routines
# (since it doesn't have its own support for, say, pthreads).
# This requires us to #include a special header file, and also to
@ -17747,7 +17749,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.2, which was
This file was extended by google-perftools $as_me 1.8.3, which was
generated by GNU Autoconf 2.65. Invocation command line was
CONFIG_FILES = $CONFIG_FILES
@ -17813,7 +17815,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.2
google-perftools config.status 1.8.3
configured by $0, generated by GNU Autoconf 2.65,
with options \\"\$ac_cs_config\\"

View File

@ -4,7 +4,7 @@
# make sure we're interpreted by some minimal autoconf
AC_PREREQ(2.57)
AC_INIT(google-perftools, 1.8.2, opensource@google.com)
AC_INIT(google-perftools, 1.8.3, 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:2:2
@ -362,6 +362,13 @@ AH_TOP([
#define GOOGLE_PERFTOOLS_CONFIG_H_
])
AH_VERBATIM([PTHREADS_CRASHES_IF_RUN_TOO_EARLY],
[/* Mark the systems where we know it's bad if pthreads runs too
early before main (before threads are initialized, presumably). */
#ifdef __FreeBSD__
#define PTHREADS_CRASHES_IF_RUN_TOO_EARLY 1
#endif])
# MinGW uses autoconf, but also needs the windows shim routines
# (since it doesn't have its own support for, say, pthreads).
# This requires us to #include a special header file, and also to

View File

@ -235,6 +235,12 @@
/* printf format code for printing a size_t and ssize_t */
#undef PRIxS
/* Mark the systems where we know it's bad if pthreads runs too
early before main (before threads are initialized, presumably). */
#ifdef __FreeBSD__
#define PTHREADS_CRASHES_IF_RUN_TOO_EARLY 1
#endif
/* Define to necessary symbol if this constant uses a non-standard name on
your system. */
#undef PTHREAD_CREATE_JOINABLE

View File

@ -72,7 +72,7 @@ use strict;
use warnings;
use Getopt::Long;
my $PPROF_VERSION = "1.8.2";
my $PPROF_VERSION = "1.8.3";
# 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.2"
#define PACKAGE_STRING "google-perftools 1.8.3"
/* 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.2"
#define PACKAGE_VERSION "1.8.3"
/* How to access the PC from a struct ucontext */
#undef PC_FROM_UCONTEXT
@ -256,12 +256,6 @@
/* printf format code for printing a size_t and ssize_t */
#define PRIxS "Ix"
/* Mark the systems where we know it's bad if pthreads runs too
early before main (before threads are initialized, presumably). */
#ifdef __FreeBSD__
#define PTHREADS_CRASHES_IF_RUN_TOO_EARLY 1
#endif
/* Define to necessary symbol if this constant uses a non-standard name on
your system. */
#undef PTHREAD_CREATE_JOINABLE