mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 14:26:43 +00:00
updates to make this closer to compile
Original commit message from CVS: updates to make this closer to compile
This commit is contained in:
parent
94bc644f6c
commit
90c2020e84
3 changed files with 22 additions and 4 deletions
|
@ -14,7 +14,7 @@ then
|
|||
fi
|
||||
|
||||
# ensure that we have the dirs we put ext libs in to appease automake
|
||||
mkdir -p gst-libs/ext/ffmpeg/ffmpeg
|
||||
#mkdir -p gst-libs/ext/ffmpeg/ffmpeg
|
||||
|
||||
# source helper functions
|
||||
if test ! -f common/gst-autogen.sh;
|
||||
|
|
21
configure.ac
21
configure.ac
|
@ -223,6 +223,27 @@ fi
|
|||
|
||||
AC_SUBST(GST_CONTROL_LIBS)
|
||||
|
||||
dnl check for gstreamer-base; uninstalled is selected preferentially
|
||||
PKG_CHECK_MODULES(GST_BASE, gstreamer-base-$GST_MAJORMINOR >= $GST_REQ,
|
||||
HAVE_GST_BASE="yes", HAVE_GST_BASE="no")
|
||||
|
||||
if test "x$HAVE_GST_BASE" = "xno"; then
|
||||
AC_MSG_ERROR(no GStreamer Base Libs found)
|
||||
fi
|
||||
|
||||
AC_SUBST(GST_BASE_LIBS)
|
||||
|
||||
dnl check for gstreamer-interfaces; uinstalled is selected preferentially
|
||||
PKG_CHECK_MODULES(GST_INTERFACES, gstreamer-interfaces-$GST_MAJORMINOR >= $GST_REQ,
|
||||
HAVE_GST_INTERFACES="yes", HAVE_GST_INTERFACES="no")
|
||||
|
||||
if test "x$HAVE_GST_INTERFACES" = "xno"; then
|
||||
AC_MSG_ERROR(no GStreamer Interfaces Libs found)
|
||||
fi
|
||||
|
||||
AC_SUBST(GST_INTERFACES_LIBS)
|
||||
|
||||
|
||||
dnl Determine endianness
|
||||
AC_C_BIGENDIAN
|
||||
|
||||
|
|
|
@ -37,9 +37,6 @@ BuildRequires: gstreamer-tools >= %{gst_minver}
|
|||
BuildRequires: gcc-c++
|
||||
BuildRequires: XFree86-devel
|
||||
|
||||
@USE_ARTS_TRUE@Requires: arts >= 1.1.4
|
||||
@USE_ARTS_TRUE@BuildRequires: arts-devel >= 1.1.4
|
||||
@USE_ARTS_TRUE@BuildRequires: gcc-c++
|
||||
@USE_AUDIOFILE_TRUE@Requires: audiofile >= 0.2.1
|
||||
@USE_AUDIOFILE_TRUE@BuildRequires: audiofile-devel >= 0.2.1
|
||||
@USE_CDPARANOIA_TRUE@Requires: cdparanoia-libs >= alpha9.7
|
||||
|
|
Loading…
Reference in a new issue