summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorGrigori Goronzy <greg@hein>2010-06-26 03:04:00 +0200
committerGrigori Goronzy <greg@blackbox>2010-06-26 03:06:58 +0200
commitdefb18da73b40f8ac3f14fbf1e461482f9c9cff3 (patch)
tree98add31ad73ae726d8f55f907f81d8f4f55bbd26 /configure.ac
parent457b56333b5a4dcab972c356d8e8e49eecc2df6d (diff)
downloadlibass-defb18da73b40f8ac3f14fbf1e461482f9c9cff3.tar.bz2
libass-defb18da73b40f8ac3f14fbf1e461482f9c9cff3.tar.xz
Build system: replace "shave" script by AM_SILENT_RULES
Use AM_SILENT_RULES in favor of "shave" if automake >= 1.11 is available. Otherwise, disable silent build.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac
index c1f7ab2..4c5dd0f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,6 +1,6 @@
AC_INIT(libass, 0.9.9)
AM_INIT_AUTOMAKE
-AC_CONFIG_MACRO_DIR([shave])
+AC_CONFIG_MACRO_DIR([m4])
# Disable C++/Fortran checks
define([AC_LIBTOOL_LANG_CXX_CONFIG], [:])
define([AC_LIBTOOL_LANG_F77_CONFIG], [:])
@@ -88,10 +88,10 @@ fi
AC_SUBST([PKG_REQUIRES])
# Setup output beautifier.
-SHAVE_INIT([shave], [enable])
+m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
# More sensible compile flags
CFLAGS="$CFLAGS -Wall"
-AC_CONFIG_FILES([Makefile libass/Makefile test/Makefile libass.pc shave/shave shave/shave-libtool])
+AC_CONFIG_FILES([Makefile libass/Makefile test/Makefile libass.pc])
AC_OUTPUT