mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-08 18:39:54 +00:00
fix build issues
Original commit message from CVS: fix build issues
This commit is contained in:
parent
44e75ff76a
commit
35e578a6b7
1 changed files with 12 additions and 20 deletions
26
configure.ac
26
configure.ac
|
@ -10,7 +10,7 @@ AC_CONFIG_SRCDIR([gst/law/alaw.c])
|
||||||
AM_CONFIG_HEADER(config.h)
|
AM_CONFIG_HEADER(config.h)
|
||||||
|
|
||||||
dnl libtool
|
dnl libtool
|
||||||
GST_CURRENT=2
|
GST_CURRENT=0
|
||||||
GST_REVISION=0
|
GST_REVISION=0
|
||||||
GST_AGE=0
|
GST_AGE=0
|
||||||
GST_LIBVERSION=$GST_CURRENT:$GST_REVISION:$GST_AGE
|
GST_LIBVERSION=$GST_CURRENT:$GST_REVISION:$GST_AGE
|
||||||
|
@ -138,24 +138,9 @@ AC_C_BIGENDIAN
|
||||||
dnl Check for essential libraries first:
|
dnl Check for essential libraries first:
|
||||||
dnl ====================================
|
dnl ====================================
|
||||||
|
|
||||||
if test -n "`echo $GST_CFLAGS | grep USE_GLIB2`"; then
|
|
||||||
USE_GLIB2=yes
|
|
||||||
else
|
|
||||||
USE_GLIB2=no
|
|
||||||
fi
|
|
||||||
|
|
||||||
dnl needed for some plugins and demos, now's a nice time to check for gtk
|
|
||||||
if test x$USE_GLIB2 = xno; then
|
|
||||||
AM_PATH_GTK(1.2.0,,
|
|
||||||
AC_MSG_ERROR(Cannot find gtk: Is gtk-config in path?))
|
|
||||||
HAVE_GTK=yes
|
|
||||||
# we have to have it
|
|
||||||
else
|
|
||||||
PKG_CHECK_MODULES(GTK2, gtk+-2.0, HAVE_GTK=yes, HAVE_GTK=no)
|
PKG_CHECK_MODULES(GTK2, gtk+-2.0, HAVE_GTK=yes, HAVE_GTK=no)
|
||||||
|
|
||||||
GTK_CFLAGS=$GTK2_CFLAGS
|
GTK_CFLAGS=$GTK2_CFLAGS
|
||||||
GTK_LIBS=$GTK2_LIBS
|
GTK_LIBS=$GTK2_LIBS
|
||||||
fi
|
|
||||||
AC_SUBST(GTK_LIBS)
|
AC_SUBST(GTK_LIBS)
|
||||||
AC_SUBST(GTK_CFLAGS)
|
AC_SUBST(GTK_CFLAGS)
|
||||||
|
|
||||||
|
@ -470,6 +455,11 @@ dnl FIXME: we could use header checks here as well IMO
|
||||||
translit(dnm, m, l) AM_CONDITIONAL(USE_MAD, true)
|
translit(dnm, m, l) AM_CONDITIONAL(USE_MAD, true)
|
||||||
GST_CHECK_FEATURE(MAD, [mad mp3 decoder], mad, [
|
GST_CHECK_FEATURE(MAD, [mad mp3 decoder], mad, [
|
||||||
AC_CHECK_LIB(mad, mad_decoder_finish, HAVE_MAD="yes" MAD_LIBS="-lmad")
|
AC_CHECK_LIB(mad, mad_decoder_finish, HAVE_MAD="yes" MAD_LIBS="-lmad")
|
||||||
|
if test "x$HAVE_MAD" = "xyes"; then
|
||||||
|
# installed with mad >= 0.14
|
||||||
|
HAVE_MAD="no"
|
||||||
|
AC_CHECK_LIB(id3tag, id3_tag_query, HAVE_MAD="yes" MAD_LIBS="$MAD_LIBS -lid3tag")
|
||||||
|
fi
|
||||||
])
|
])
|
||||||
AC_SUBST(MAD_LIBS)
|
AC_SUBST(MAD_LIBS)
|
||||||
|
|
||||||
|
@ -709,7 +699,7 @@ dnl #########################
|
||||||
dnl # Make the output files #
|
dnl # Make the output files #
|
||||||
dnl #########################
|
dnl #########################
|
||||||
|
|
||||||
AC_OUTPUT(
|
AC_CONFIG_FILES(
|
||||||
Makefile
|
Makefile
|
||||||
gstreamer-libs.pc
|
gstreamer-libs.pc
|
||||||
gstreamer-libs-uninstalled.pc
|
gstreamer-libs-uninstalled.pc
|
||||||
|
@ -809,6 +799,8 @@ examples/Makefile
|
||||||
tools/Makefile
|
tools/Makefile
|
||||||
)
|
)
|
||||||
|
|
||||||
|
AC_OUTPUT
|
||||||
|
|
||||||
echo -e "configure: *** Plugins that will be built : $GST_PLUGINS_YES"
|
echo -e "configure: *** Plugins that will be built : $GST_PLUGINS_YES"
|
||||||
echo
|
echo
|
||||||
echo -e "configure: *** Plugins that will not be built : $GST_PLUGINS_NO"
|
echo -e "configure: *** Plugins that will not be built : $GST_PLUGINS_NO"
|
||||||
|
|
Loading…
Reference in a new issue