* update configure.ac: bump version to 0.8.2; don't use AM_INIT_AUTOMAKE([dist-bzip2])

AM_INIT_AUTOMAKE([dist-bzip2]) requires a newer autotools, and since we
  don't really need bzip2'ed args anyway, removing this
This commit is contained in:
Dirk-Jan C. Binnema 2012-02-28 21:22:50 +02:00
parent 574b0d72eb
commit d6a53ebee2
1 changed files with 2 additions and 2 deletions

View File

@ -14,13 +14,13 @@
## along with this program; if not, write to the Free Software Foundation,
## Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
AC_INIT([mu],[0.9.8.1],[http://code.google.com/p/mu0/issues/list],[mu])
AC_INIT([mu],[0.9.8.2],[http://code.google.com/p/mu0/issues/list],[mu])
AC_CONFIG_HEADERS([config.h])
AC_CONFIG_SRCDIR([src/mu.cc])
# libtoolize wants to put some stuff in here; if you have an old
# autotools/libtool setup. you can try to comment this out
AC_CONFIG_MACRO_DIR([m4])
AM_INIT_AUTOMAKE([dist-bzip2])
AM_INIT_AUTOMAKE
# silent build if we have a new enough automake
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])