mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 07:47:17 +00:00
GConf fix
Original commit message from CVS: GConf fix
This commit is contained in:
parent
6c10cb42c9
commit
96b36e1119
1 changed files with 12 additions and 10 deletions
22
configure.ac
22
configure.ac
|
@ -100,16 +100,18 @@ else
|
|||
fi
|
||||
|
||||
dnl check for gconf
|
||||
translit(dnm, m, l) AM_CONDITIONAL(HAVE_GCONF, true)
|
||||
AC_PATH_PROG(GCONFTOOL, gconftool-2, no)
|
||||
if test x$GCONFTOOL = xno; then
|
||||
AC_MSG_WARN(Not installing GConf schemas)
|
||||
HAVE_GCONF="no"
|
||||
else
|
||||
AM_GCONF_SOURCE_2
|
||||
HAVE_GCONF="yes"
|
||||
fi
|
||||
AC_SUBST(HAVE_GCONF)
|
||||
translit(dnm, m, l) AM_CONDITIONAL(USE_GCONF, true)
|
||||
GST_CHECK_FEATURE(GCONF, [GConf stuff], , [
|
||||
AC_PATH_PROG(GCONFTOOL, gconftool-2, no)
|
||||
if test x$GCONFTOOL = xno; then
|
||||
AC_MSG_WARN(Not installing GConf schemas)
|
||||
HAVE_GCONF="no"
|
||||
else
|
||||
AM_GCONF_SOURCE_2
|
||||
HAVE_GCONF="yes"
|
||||
fi
|
||||
AC_SUBST(HAVE_GCONF)
|
||||
])
|
||||
|
||||
dnl check for gstreamer; uninstalled is selected preferentially -- see pkg-config(1)
|
||||
PKG_CHECK_MODULES(GST, gstreamer >= $GST_PLUGINS_MAJOR.$GST_PLUGINS_MINOR.$GST_PLUGINS_MICRO,
|
||||
|
|
Loading…
Reference in a new issue