Fri,  6 Aug 2010 11:36:36 -0800  Google Inc. <opensource@google.com>
  Release version 0.8.1 with the following change:
  * Issue #24: Revert the fix for Issue #21, which caused a regression
    (the Debian package did not properly install the vcdiff executable.)
    This version of open-vcdiff builds and tests successfully using MinGW 5.1.6,
    so Issue #21 is no longer a problem.
  * Fix warning in autogen.sh by providing only one directory argument to
    AC_CONFIG_MACRO_DIR.  The subordinate directory gflags/m4 is still
    specified as an -I argument to aclocal.


git-svn-id: http://open-vcdiff.googlecode.com/svn/trunk@37 132ac840-3546-0410-a738-d3f8764196be
diff --git a/configure.ac b/configure.ac
index a71136a..5b68570 100644
--- a/configure.ac
+++ b/configure.ac
@@ -4,9 +4,9 @@
 # make sure we're interpreted by some minimal autoconf
 AC_PREREQ(2.57)
 
-AC_INIT(open-vcdiff, 0.8, opensource@google.com)
+AC_INIT(open-vcdiff, 0.8.1, opensource@google.com)
 AC_CONFIG_SRCDIR(README)
-AC_CONFIG_MACRO_DIR([m4 gflags/m4])
+AC_CONFIG_MACRO_DIR(m4)
 AM_INIT_AUTOMAKE
 AM_CONFIG_HEADER(src/config.h)
 
@@ -17,12 +17,6 @@
 AM_CONDITIONAL(GCC, test "$GCC" = yes)   # let the Makefile know if we're gcc
 AC_CANONICAL_HOST
 
-# Issue #21:  Fail to test on MinGW 5.1.4
-# Disabling fast install keeps libtool from creating wrapper scripts around
-# the executables it builds.  Such scripts have caused failures on MinGW.
-# Using this option means an extra link step is executed during "make install".
-AC_DISABLE_FAST_INSTALL
-
 LT_INIT
 AC_PROG_LIBTOOL
 AC_SUBST(LIBTOOL_DEPS)