mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-29 21:21:12 +00:00
configure: Use automake 1.11 silent rules instead of shave if available
This makes sure that we use something that is still maintained and also brings back libtool 1.5 support.
This commit is contained in:
parent
3921fd7493
commit
daab7d1c40
1 changed files with 5 additions and 4 deletions
|
@ -27,6 +27,11 @@ AM_CONFIG_HEADER([config.h])
|
|||
dnl AM_MAINTAINER_MODE only provides the option to configure to enable it
|
||||
AM_MAINTAINER_MODE
|
||||
|
||||
dnl use pretty build output with automake >= 1.11
|
||||
m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])],
|
||||
[AM_DEFAULT_VERBOSITY=1
|
||||
AC_SUBST(AM_DEFAULT_VERBOSITY)])
|
||||
|
||||
AC_DEFINE_UNQUOTED(PYGST_MAJOR_VERSION, $PACKAGE_VERSION_MAJOR, [PyGst major version])
|
||||
AC_DEFINE_UNQUOTED(PYGST_MINOR_VERSION, $PACKAGE_VERSION_MINOR, [PyGst minor version])
|
||||
AC_DEFINE_UNQUOTED(PYGST_MICRO_VERSION, $PACKAGE_VERSION_MICRO, [PyGst micro version])
|
||||
|
@ -353,15 +358,11 @@ AM_CHECK_PYTHON_LIBS(,[AC_MSG_ERROR(could not find Python lib)])
|
|||
|
||||
AG_GST_SET_PLUGINDIR
|
||||
|
||||
SHAVE_INIT([common],[enable])
|
||||
|
||||
AC_OUTPUT([
|
||||
Makefile
|
||||
codegen/Makefile
|
||||
common/Makefile
|
||||
common/m4/Makefile
|
||||
common/shave
|
||||
common/shave-libtool
|
||||
gst/Makefile
|
||||
gst/gstversion.override
|
||||
gst/extend/Makefile
|
||||
|
|
Loading…
Reference in a new issue