From fa6ba3db53a843986bba34cc6c666a89624326f4 Mon Sep 17 00:00:00 2001 From: Brian Aker Date: Fri, 19 Oct 2012 00:21:56 -0400 Subject: [PATCH] Update for version 1.0.13 --- ChangeLog | 3 +++ bootstrap.sh | 6 +++--- configure.ac | 2 +- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index f886aa17..ddb4be3b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,6 @@ +1.0.13 Fri Oct 19 00:09:28 EDT 2012 +* Fix bug that caused version string to not be exported correctly. + 1.0.12 Tue Oct 9 03:30:20 EDT 2012 * Added memcached_result_take_value(). * Added ax_libmemcached.m4 diff --git a/bootstrap.sh b/bootstrap.sh index c46f1eaf..1d114b28 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -604,7 +604,7 @@ make_gdb () # $1 target to compile # $2 to die, or not to die, based on contents -make_target () +function make_target () { if [[ -z "$1" ]]; then die "Programmer error, no target provided for make" @@ -687,13 +687,13 @@ run_autoreconf () eval 'bash -n configure' || die "autoreconf generated a malformed configure" } -run () +function run () { if $VERBOSE; then echo "\`$@' $ARGS" fi - ($@ $ARGS) + $@ $ARGS } parse_command_line_options () diff --git a/configure.ac b/configure.ac index 7f729dae..feaadda3 100644 --- a/configure.ac +++ b/configure.ac @@ -6,7 +6,7 @@ # Use and distribution licensed under the BSD license. See # the COPYING file in this directory for full text. -AC_INIT([libmemcached],[1.0.12],[http://libmemcached.org/]) +AC_INIT([libmemcached],[1.0.13],[http://libmemcached.org/]) AC_CONFIG_AUX_DIR([build-aux]) AC_CONFIG_MACRO_DIR([m4]) -- 2.30.2