mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-07 07:58:51 +00:00
Fixed a few things to enable the mad and effectv to be able to find the headers in the gst-plugins-base/gst-libs and ...
Original commit message from CVS: Fixed a few things to enable the mad and effectv to be able to find the headers in the gst-plugins-base/gst-libs and to link against the libs in there.
This commit is contained in:
parent
2caf6239d7
commit
62d117a484
3 changed files with 13 additions and 4 deletions
|
@ -1,3 +1,12 @@
|
||||||
|
2005-05-08 Zeeshan Ali <zeenix@gmail.com>
|
||||||
|
|
||||||
|
* configure.ac:
|
||||||
|
* ext/mad/Makefile.am:
|
||||||
|
* effectv/Makefile.am:
|
||||||
|
Fixed a few things to enable the mad and effectv to be able to find the
|
||||||
|
headers in the gst-plugins-base/gst-libs and to link against the libs
|
||||||
|
in there.
|
||||||
|
|
||||||
2005-05-07 Zeeshan Ali <zeenix@gmail.com>
|
2005-05-07 Zeeshan Ali <zeenix@gmail.com>
|
||||||
|
|
||||||
* configure.ac:
|
* configure.ac:
|
||||||
|
|
|
@ -263,8 +263,8 @@ if test "x$HAVE_GST_PLUGINS" = "xno"; then
|
||||||
AC_MSG_ERROR(no GStreamer Plugins Libs found)
|
AC_MSG_ERROR(no GStreamer Plugins Libs found)
|
||||||
fi
|
fi
|
||||||
|
|
||||||
AC_SUBST(GST_PLUGINS_LIBS)
|
AC_SUBST(GST_PLUGINS_LIBS_LIBS)
|
||||||
AC_SUBST(GST_PLUGINS_CFLAGS)
|
AC_SUBST(GST_PLUGINS_LIBS_CFLAGS)
|
||||||
|
|
||||||
dnl Determine endianness
|
dnl Determine endianness
|
||||||
AC_C_BIGENDIAN
|
AC_C_BIGENDIAN
|
||||||
|
|
|
@ -2,8 +2,8 @@ plugin_LTLIBRARIES = libgstmad.la
|
||||||
|
|
||||||
libgstmad_la_SOURCES = gstmad.c gstid3tag.c
|
libgstmad_la_SOURCES = gstmad.c gstid3tag.c
|
||||||
|
|
||||||
libgstmad_la_CFLAGS = $(GST_CFLAGS) $(MAD_CFLAGS) $(ID3_CFLAGS)
|
libgstmad_la_CFLAGS = $(GST_CFLAGS) $(GST_PLUGINS_LIBS_CFLAGS) $(MAD_CFLAGS) $(ID3_CFLAGS)
|
||||||
libgstmad_la_LIBADD = $(MAD_LIBS) $(ID3_LIBS) $(GST_INTERFACES_LIBS)
|
libgstmad_la_LIBADD = $(MAD_LIBS) $(ID3_LIBS) $(GST_INTERFACES_LIBS)
|
||||||
libgstmad_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstmad_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) $(GST_PLUGINS_LIBS_CFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstmad.h
|
noinst_HEADERS = gstmad.h
|
||||||
|
|
Loading…
Reference in a new issue