mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-22 16:26:39 +00:00
some sidplay fixoring
Original commit message from CVS: some sidplay fixoring
This commit is contained in:
parent
ef303c604d
commit
bc885a1aea
3 changed files with 23 additions and 13 deletions
|
@ -1,3 +1,10 @@
|
||||||
|
2005-05-06 Christian Schaller <uraeus@gnome.org>
|
||||||
|
|
||||||
|
* configure.ac: add sidplay
|
||||||
|
* ext/Makefile.am: add sidplay
|
||||||
|
* ext/sidplay/Makefile.am: add GST_PLUGINS_CFLAGS
|
||||||
|
* ext/sidplay/gstsiddec.cc: remove bytestream.h
|
||||||
|
|
||||||
2005-05-06 Christian Schaller <uraeus@gnome.org>
|
2005-05-06 Christian Schaller <uraeus@gnome.org>
|
||||||
|
|
||||||
* configure.ac: add gst-plugins-libs
|
* configure.ac: add gst-plugins-libs
|
||||||
|
|
16
configure.ac
16
configure.ac
|
@ -242,6 +242,7 @@ if test "x$HAVE_GST_BASE" = "xno"; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
AC_SUBST(GST_BASE_LIBS)
|
AC_SUBST(GST_BASE_LIBS)
|
||||||
|
AC_SUBST(GST_BASE_CFLAGS)
|
||||||
|
|
||||||
dnl check for gstreamer-interfaces; uinstalled is selected preferentially
|
dnl check for gstreamer-interfaces; uinstalled is selected preferentially
|
||||||
PKG_CHECK_MODULES(GST_INTERFACES, gstreamer-interfaces-$GST_MAJORMINOR >= $GST_REQ,
|
PKG_CHECK_MODULES(GST_INTERFACES, gstreamer-interfaces-$GST_MAJORMINOR >= $GST_REQ,
|
||||||
|
@ -252,6 +253,7 @@ if test "x$HAVE_GST_INTERFACES" = "xno"; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
AC_SUBST(GST_INTERFACES_LIBS)
|
AC_SUBST(GST_INTERFACES_LIBS)
|
||||||
|
AC_SUBST(GST_INTERFACES_CFLAGS)
|
||||||
|
|
||||||
dnl check for gstreamer-interfaces; uinstalled is selected preferentially
|
dnl check for gstreamer-interfaces; uinstalled is selected preferentially
|
||||||
PKG_CHECK_MODULES(GST_PLUGINS_LIBS, gstreamer-libs-$GST_MAJORMINOR >= $GST_REQ,
|
PKG_CHECK_MODULES(GST_PLUGINS_LIBS, gstreamer-libs-$GST_MAJORMINOR >= $GST_REQ,
|
||||||
|
@ -262,7 +264,7 @@ if test "x$HAVE_GST_PLUGINS" = "xno"; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
AC_SUBST(GST_PLUGINS_LIBS)
|
AC_SUBST(GST_PLUGINS_LIBS)
|
||||||
|
AC_SUBST(GST_PLUGINS_CFLAGS)
|
||||||
|
|
||||||
dnl Determine endianness
|
dnl Determine endianness
|
||||||
AC_C_BIGENDIAN
|
AC_C_BIGENDIAN
|
||||||
|
@ -305,8 +307,7 @@ dnl these are all the gst plug-ins, compilable without additional libs
|
||||||
GST_PLUGINS_ALL="\
|
GST_PLUGINS_ALL="\
|
||||||
videofilter \
|
videofilter \
|
||||||
effectv \
|
effectv \
|
||||||
law \
|
law"
|
||||||
sidplay"
|
|
||||||
|
|
||||||
dnl see if we can build C++ plug-ins
|
dnl see if we can build C++ plug-ins
|
||||||
if test "x$HAVE_CXX" = "xyes"; then
|
if test "x$HAVE_CXX" = "xyes"; then
|
||||||
|
@ -359,6 +360,11 @@ dnl ])
|
||||||
dnl ])
|
dnl ])
|
||||||
dnl ])
|
dnl ])
|
||||||
|
|
||||||
|
dnl ###########################
|
||||||
|
dnl # Configure external libs #
|
||||||
|
dnl ###########################
|
||||||
|
|
||||||
|
|
||||||
dnl *** sidplay : works with libsidplay 1.36.x (not 2.x.x) ***
|
dnl *** sidplay : works with libsidplay 1.36.x (not 2.x.x) ***
|
||||||
translit(dnm, m, l) AM_CONDITIONAL(USE_SIDPLAY, true)
|
translit(dnm, m, l) AM_CONDITIONAL(USE_SIDPLAY, true)
|
||||||
GST_CHECK_FEATURE(SIDPLAY, [sidplay plug-in], sidplay, [
|
GST_CHECK_FEATURE(SIDPLAY, [sidplay plug-in], sidplay, [
|
||||||
|
@ -389,10 +395,6 @@ AC_SUBST(MAD_LIBS)
|
||||||
AC_SUBST(GST_LIBS)
|
AC_SUBST(GST_LIBS)
|
||||||
AC_SUBST(GST_CFLAGS)
|
AC_SUBST(GST_CFLAGS)
|
||||||
|
|
||||||
dnl ###########################
|
|
||||||
dnl # Configure external libs #
|
|
||||||
dnl ###########################
|
|
||||||
|
|
||||||
dnl ############################
|
dnl ############################
|
||||||
dnl # Set up some more defines #
|
dnl # Set up some more defines #
|
||||||
dnl ############################
|
dnl ############################
|
||||||
|
|
|
@ -316,11 +316,11 @@ endif
|
||||||
# SHOUT2_DIR=
|
# SHOUT2_DIR=
|
||||||
# endif
|
# endif
|
||||||
|
|
||||||
# if USE_SIDPLAY
|
if USE_SIDPLAY
|
||||||
# SIDPLAY_DIR=sidplay
|
SIDPLAY_DIR=sidplay
|
||||||
# else
|
else
|
||||||
# SIDDPLAY_DIR=
|
SIDDPLAY_DIR=
|
||||||
# endif
|
endif
|
||||||
|
|
||||||
# if USE_SMOOTHWAVE
|
# if USE_SMOOTHWAVE
|
||||||
# SMOOTHWAVE_DIR=smoothwave
|
# SMOOTHWAVE_DIR=smoothwave
|
||||||
|
@ -443,4 +443,5 @@ SUBDIRS=\
|
||||||
$(XVID_DIR)
|
$(XVID_DIR)
|
||||||
|
|
||||||
DIST_SUBDIRS=\
|
DIST_SUBDIRS=\
|
||||||
mad
|
mad \
|
||||||
|
sidplay
|
||||||
|
|
Loading…
Reference in a new issue