mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 14:56:36 +00:00
don't build checks if we don't have check
Original commit message from CVS: don't build checks if we don't have check
This commit is contained in:
parent
dd8b6e6962
commit
722ec5e4ab
1 changed files with 17 additions and 0 deletions
17
configure.ac
17
configure.ac
|
@ -343,6 +343,18 @@ GST_CHECK_FEATURE(AALIB, [aasink plug-in], aasink, [
|
|||
AS_SCRUB_INCLUDE(AALIB_CFLAGS)
|
||||
])
|
||||
|
||||
dnl *** cairo ***
|
||||
translit(dnm, m, l) AM_CONDITIONAL(USE_CAIRO, true)
|
||||
GST_CHECK_FEATURE(CAIRO, [cairo plug-in], cairo, [
|
||||
PKG_CHECK_MODULES(CAIRO, cairo >= 1.0.0, [
|
||||
HAVE_CAIRO=yes
|
||||
AC_SUBST(CAIRO_CFLAGS)
|
||||
AC_SUBST(CAIRO_LIBS)
|
||||
], [
|
||||
HAVE_CAIRO=no
|
||||
])
|
||||
])
|
||||
|
||||
dnl **** ESound ****
|
||||
translit(dnm, m, l) AM_CONDITIONAL(USE_ESD, true)
|
||||
GST_CHECK_FEATURE(ESD, [esound plug-ins], esdsink, [
|
||||
|
@ -512,6 +524,10 @@ GST_CFLAGS="-I\$(top_srcdir)/gst-libs -I\$(top_builddir)/gst-libs $GST_CFLAGS $G
|
|||
AC_SUBST(GST_LIBS)
|
||||
AC_SUBST(GST_CFLAGS)
|
||||
|
||||
dnl check for "check", unit testing library/header
|
||||
AM_PATH_CHECK(0.9.2, HAVE_CHECK=yes, HAVE_CHECK=no)
|
||||
AM_CONDITIONAL(HAVE_CHECK, test "x$HAVE_CHECK" = "xyes")
|
||||
|
||||
dnl ######################
|
||||
dnl # Checks for gtk-doc #
|
||||
dnl ######################
|
||||
|
@ -588,6 +604,7 @@ gst/wavparse/Makefile
|
|||
ext/jpeg/Makefile
|
||||
ext/Makefile
|
||||
ext/aalib/Makefile
|
||||
ext/cairo/Makefile
|
||||
ext/dv/Makefile
|
||||
ext/esd/Makefile
|
||||
ext/flac/Makefile
|
||||
|
|
Loading…
Reference in a new issue