Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gst-plugins-base
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Seungha Yang
gst-plugins-base
Commits
75952310
Commit
75952310
authored
Dec 20, 2001
by
Thomas Vander Stichele
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
removing HAVE_OSS and HAVE_XAUDIO
Original commit message from CVS: removing HAVE_OSS and HAVE_XAUDIO
parent
50b87964
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
39 additions
and
31 deletions
+39
-31
configure.ac
configure.ac
+39
-31
No files found.
configure.ac
View file @
75952310
dnl autoconf configuration file for plugins
AC_INIT
AC_CONFIG_SRCDIR([
configure.ac
])
AC_CONFIG_SRCDIR([
COPYING
])
AC_CANONICAL_TARGET([])
...
...
@@ -15,7 +15,7 @@ GST_VERSION_RELEASE=`date +%Y%m%d`
GST_VERSION=$GST_VERSION_MAJOR.$GST_VERSION_MINOR.$GST_VERSION_MICRO
PACKAGE=gst
reamer
-plugins
PACKAGE=gst-plugins
VERSION=$GST_VERSION
AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE")
...
...
@@ -31,6 +31,9 @@ GST_REVISION=0
GST_AGE=0
GST_LIBVERSION=$GST_CURRENT:$GST_REVISION:$GST_AGE
dnl check for gstreamer
PKG_CHECK_MODULES(GST, gstreamer >= 0.3.0)
AM_INIT_AUTOMAKE($PACKAGE, $VERSION)
dnl Add parameters for aclocal
dnl (This must come after AM_INIT_AUTOMAKE, since it modifies ACLOCAL)
...
...
@@ -400,6 +403,24 @@ dnl ==========================================================================
dnl ========================= End macro definitions ==========================
dnl ==========================================================================
dnl ==========================================================================
dnl ============================= sys plugins ================================
dnl ==========================================================================
dnl *** OSS audio ***
translit(dnm, m, l) AM_CONDITIONAL(USE_OSS, true)
GST_CHECK_FEATURE(OSS, [OSS audio], osssrc osssink, [
AC_CHECK_HEADER(sys/soundcard.h, HAVE_OSS="yes", HAVE_OSS="no")
])
dnl *** VGA ***
translit(dnm, m, l) AM_CONDITIONAL(USE_VGASINK, true)
GST_CHECK_FEATURE(VGA, [VGA sink], vgavideosink, [
AC_CHECK_HEADER(asm/vga.h, HAVE_VGASINK="yes", HAVE_VGASINK="no")
])
dnl Next, check for the optional libraries:
dnl These are all libraries used in building plugins
...
...
@@ -551,12 +572,6 @@ GST_CHECK_FEATURE(MPEG2DEC, [mpeg2dec], mpeg2dec, [
GST_CHECK_LIBHEADER(MPEG2DEC, mpeg2, mpeg2_init,, mpeg2dec/mpeg2.h, MPEG2DEC_LIBS="-lmpeg2")
])
dnl *** OSS audio ***
translit(dnm, m, l) AM_CONDITIONAL(USE_OSS, true)
GST_CHECK_FEATURE(OSS, [OSS audio], osssrc osssink, [
AC_CHECK_HEADER(sys/soundcard.h, HAVE_OSS="yes", HAVE_OSS="no")
])
dnl *** quicktime ***
dnl FIXME: make this be called openquicktime
translit(dnm, m, l) AM_CONDITIONAL(USE_QUICKTIME, true)
...
...
@@ -983,14 +998,6 @@ if test "x$HAVE_LIBXV" = xyes; then
AC_DEFINE(HAVE_LIBXV)
fi
if test "x$HAVE_OSS" = xyes; then
AC_DEFINE(HAVE_OSS)
fi
if test "x$HAVE_XAUDIO" = xyes; then
AC_DEFINE(HAVE_XAUDIO)
fi
if test "x$HAVE_LIBMAD" = xyes; then
AC_DEFINE(HAVE_LIBMAD)
fi
...
...
@@ -1192,25 +1199,26 @@ dnl components/bonobo-gstmediaplay/Makefile
dnl someone should fix this test/misc/Makefile
dnl wtay fix this: testsuite/threads/Makefile
dnl testsuite/refcounting/Makefile
dnl libs/Makefile
dnl libs/riff/Makefile
dnl libs/getbits/Makefile
dnl libs/putbits/Makefile
dnl libs/idct/Makefile
dnl libs/audio/Makefile
dnl libs/bytestream/Makefile
dnl libs/control/Makefile
dnl libs/resample/Makefile
dnl stamp.h
dnl echo "$infomessages", infomessages="$infomessages"
AC_OUTPUT(
Makefile
sys/vgasink/Makefile
sys/Makefile
sys/oss/Makefile
sys/qcam/Makefile
sys/v4l/Makefile
sys/vcdsrc/Makefile
sys/vgasink/Makefile
sys/xvideosink/Makefile
sys/v4l/Makefile
sys/qcam/Makefile
sys/Makefile
libs/Makefile
libs/riff/Makefile
libs/getbits/Makefile
libs/putbits/Makefile
libs/idct/Makefile
libs/audio/Makefile
libs/bytestream/Makefile
libs/control/Makefile
libs/resample/Makefile
stamp.h
echo "$infomessages", infomessages="$infomessages"
)
echo -e "configure: *** Plugins that will be built : $GST_PLUGINS_YES"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment