mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-08 16:35:40 +00:00
am 1.6 requires AM_CONDITIONAL in configure.ac
Original commit message from CVS: am 1.6 requires AM_CONDITIONAL in configure.ac
This commit is contained in:
parent
5ee87d1992
commit
b1f2d545e2
3 changed files with 17 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2004-02-13 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||
|
||||
* configure.ac:
|
||||
add calls to AM_CONDITIONAL for subsystems for automake 1.6.x
|
||||
|
||||
2004-02-13 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||
|
||||
* configure.ac: pass required libxml version as argument
|
||||
|
|
2
common
2
common
|
@ -1 +1 @@
|
|||
Subproject commit a2d2883febd16e51a267a580cc4413b2a17a91a9
|
||||
Subproject commit 19cb5127af898da4a72109547e9c31c4e14cc964
|
11
configure.ac
11
configure.ac
|
@ -71,16 +71,27 @@ if test "x$GST_CVS" = "xyes"; then
|
|||
fi
|
||||
|
||||
dnl subsystems - can influence other decisions so needs to be high up
|
||||
dnl we need to do AM_CONDITIONAL them here for automake 1.6.x compatibility
|
||||
GST_CHECK_SUBSYSTEM_DISABLE(GST_DEBUG,[debugging subsystem])
|
||||
AM_CONDITIONAL(GST_DISABLE_GST_DEBUG, test "x$GST_DISABLE_GST_DEBUG" = "xyes")
|
||||
GST_CHECK_SUBSYSTEM_DISABLE(LOADSAVE,[pipeline XML load/save])
|
||||
AM_CONDITIONAL(GST_DISABLE_LOADSAVE, test "x$GST_DISABLE_LOADSAVE" = "xyes")
|
||||
GST_CHECK_SUBSYSTEM_DISABLE(PARSE,[command-line parser])
|
||||
AM_CONDITIONAL(GST_DISABLE_PARSE, test "x$GST_DISABLE_PARSE" = "xyes")
|
||||
GST_CHECK_SUBSYSTEM_DISABLE(TRACE,[tracing subsystem])
|
||||
AM_CONDITIONAL(GST_DISABLE_TRACE, test "x$GST_DISABLE_TRACE" = "xyes")
|
||||
GST_CHECK_SUBSYSTEM_DISABLE(ALLOC_TRACE,[allocation tracing])
|
||||
AM_CONDITIONAL(GST_DISABLE_ALLOC_TRACE, test "x$GST_DISABLE_ALLOC_TRACE" = "xyes")
|
||||
GST_CHECK_SUBSYSTEM_DISABLE(REGISTRY,[plugin registry])
|
||||
AM_CONDITIONAL(GST_DISABLE_REGISTRY, test "x$GST_DISABLE_REGISTRY" = "xyes")
|
||||
GST_CHECK_SUBSYSTEM_DISABLE(ENUMTYPES,[enum types])
|
||||
AM_CONDITIONAL(GST_DISABLE_ENUMTYPES, test "x$GST_DISABLE_ENUMTYPES" = "xyes")
|
||||
GST_CHECK_SUBSYSTEM_DISABLE(INDEX,[index])
|
||||
AM_CONDITIONAL(GST_DISABLE_INDEX, test "x$GST_DISABLE_INDEX" = "xyes")
|
||||
GST_CHECK_SUBSYSTEM_DISABLE(PLUGIN,[plugin])
|
||||
AM_CONDITIONAL(GST_DISABLE_PLUGIN, test "x$GST_DISABLE_PLUGIN" = "xyes")
|
||||
GST_CHECK_SUBSYSTEM_DISABLE(URI,[uri handlers])
|
||||
AM_CONDITIONAL(GST_DISABLE_URI, test "x$GST_DISABLE_URI" = "xyes")
|
||||
|
||||
dnl ##############################
|
||||
dnl # Do automated configuration #
|
||||
|
|
Loading…
Reference in a new issue