summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcsilvers <csilvers@6b5cf1ce-ec42-a296-1ba9-69fdba395a50>2008-09-23 17:51:05 +0000
committercsilvers <csilvers@6b5cf1ce-ec42-a296-1ba9-69fdba395a50>2008-09-23 17:51:05 +0000
commit16191f87ff8dc78295c0f617060460664fc444bd (patch)
treea5c9b00145239701a50e05a1a49f735ca3e2c1b8
parent8b2dd25dc9d1523ab9a86bd39c4fb798c89db899 (diff)
downloadgperftools-16191f87ff8dc78295c0f617060460664fc444bd.tar.gz
Tue Sep 23 08:56:31 2008 Google Inc. <opensource@google.com>
* google-perftools: version 0.99.2 release * COMPILE FIX: add #include needed for FreeBSD and OS X (csilvers) git-svn-id: http://gperftools.googlecode.com/svn/trunk@58 6b5cf1ce-ec42-a296-1ba9-69fdba395a50
-rw-r--r--ChangeLog5
-rwxr-xr-xconfigure20
-rw-r--r--configure.ac2
-rw-r--r--src/tests/heap-profiler_unittest.cc1
4 files changed, 17 insertions, 11 deletions
diff --git a/ChangeLog b/ChangeLog
index cf1338c..9216947 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Tue Sep 23 08:56:31 2008 Google Inc. <opensource@google.com>
+
+ * google-perftools: version 0.99.2 release
+ * COMPILE FIX: add #include needed for FreeBSD and OS X (csilvers)
+
Sat Sep 20 09:37:18 2008 Google Inc. <opensource@google.com>
* google-perftools: version 0.99.1 release
diff --git a/configure b/configure
index ee970ac..3852c84 100755
--- a/configure
+++ b/configure
@@ -1,6 +1,6 @@
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.59 for google-perftools 0.99.1.
+# Generated by GNU Autoconf 2.59 for google-perftools 0.99.2.
#
# Report bugs to <opensource@google.com>.
#
@@ -423,8 +423,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
# Identity of this package.
PACKAGE_NAME='google-perftools'
PACKAGE_TARNAME='google-perftools'
-PACKAGE_VERSION='0.99.1'
-PACKAGE_STRING='google-perftools 0.99.1'
+PACKAGE_VERSION='0.99.2'
+PACKAGE_STRING='google-perftools 0.99.2'
PACKAGE_BUGREPORT='opensource@google.com'
ac_unique_file="README"
@@ -954,7 +954,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 0.99.1 to adapt to many kinds of systems.
+\`configure' configures google-perftools 0.99.2 to adapt to many kinds of systems.
Usage: $0 [OPTION]... [VAR=VALUE]...
@@ -1021,7 +1021,7 @@ fi
if test -n "$ac_init_help"; then
case $ac_init_help in
- short | recursive ) echo "Configuration of google-perftools 0.99.1:";;
+ short | recursive ) echo "Configuration of google-perftools 0.99.2:";;
esac
cat <<\_ACEOF
@@ -1162,7 +1162,7 @@ fi
test -n "$ac_init_help" && exit 0
if $ac_init_version; then
cat <<\_ACEOF
-google-perftools configure 0.99.1
+google-perftools configure 0.99.2
generated by GNU Autoconf 2.59
Copyright (C) 2003 Free Software Foundation, Inc.
@@ -1176,7 +1176,7 @@ cat >&5 <<_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 0.99.1, which was
+It was created by google-perftools $as_me 0.99.2, which was
generated by GNU Autoconf 2.59. Invocation command line was
$ $0 $@
@@ -1904,7 +1904,7 @@ fi
# Define the identity of the package.
PACKAGE='google-perftools'
- VERSION='0.99.1'
+ VERSION='0.99.2'
cat >>confdefs.h <<_ACEOF
@@ -24323,7 +24323,7 @@ _ASBOX
} >&5
cat >&5 <<_CSEOF
-This file was extended by google-perftools $as_me 0.99.1, which was
+This file was extended by google-perftools $as_me 0.99.2, which was
generated by GNU Autoconf 2.59. Invocation command line was
CONFIG_FILES = $CONFIG_FILES
@@ -24386,7 +24386,7 @@ _ACEOF
cat >>$CONFIG_STATUS <<_ACEOF
ac_cs_version="\\
-google-perftools config.status 0.99.1
+google-perftools config.status 0.99.2
configured by $0, generated by GNU Autoconf 2.59,
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
diff --git a/configure.ac b/configure.ac
index 13dde67..703288e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -4,7 +4,7 @@
# make sure we're interpreted by some minimal autoconf
AC_PREREQ(2.57)
-AC_INIT(google-perftools, 0.99.1, opensource@google.com)
+AC_INIT(google-perftools, 0.99.2, opensource@google.com)
# The argument here is just something that should be in the current directory
# (for sanity checking)
AC_CONFIG_SRCDIR(README)
diff --git a/src/tests/heap-profiler_unittest.cc b/src/tests/heap-profiler_unittest.cc
index d066880..a9b6510 100644
--- a/src/tests/heap-profiler_unittest.cc
+++ b/src/tests/heap-profiler_unittest.cc
@@ -41,6 +41,7 @@
#include <stdlib.h>
#include <stdio.h>
#include <fcntl.h> // for mkdir()
+#include <sys/stat.h> // for mkdir() on freebsd and os x
#ifdef HAVE_UNISTD_H
#include <unistd.h> // for fork()
#endif