Update for version 1.0.13 1.0.13
authorBrian Aker <brian@tangent.org>
Fri, 19 Oct 2012 04:21:56 +0000 (00:21 -0400)
committerBrian Aker <brian@tangent.org>
Fri, 19 Oct 2012 04:21:56 +0000 (00:21 -0400)
ChangeLog
bootstrap.sh
configure.ac

index f886aa17b162729bdbbe6a7781b98cebec5aaf05..ddb4be3b0d18b39f3fafb7772ee46ec390606b18 100644 (file)
--- 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
index c46f1eaf524ad0c517f19e7109c8290a9b2a3551..1d114b28e53794c16ecfcfc8d8d9f3bc248ad9e4 100755 (executable)
@@ -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 ()
index 7f729daee7d8ea2f21be8f338afa6ac9fd89d70d..feaadda389e30ecd66d822d06c33e1df57ff1330 100644 (file)
@@ -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])