Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Seungha Yang
gst-plugins-base
Commits
a221ccfe
Commit
a221ccfe
authored
Dec 20, 2001
by
Thomas Vander Stichele
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added qcam checks
Original commit message from CVS: added qcam checks
parent
1d1b616c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
34 additions
and
24 deletions
+34
-24
configure.ac
configure.ac
+20
-23
sys/Makefile.am
sys/Makefile.am
+14
-1
No files found.
configure.ac
View file @
a221ccfe
...
...
@@ -405,6 +405,17 @@ dnl ==========================================================================
dnl ========================= End macro definitions ==========================
dnl ==========================================================================
dnl Check for X11 extensions
AC_PATH_XTRA
if test "-DX_DISPLAY_MISSING" = "$X_CFLAGS"; then
AC_MSG_ERROR(can not find X11)
fi
AC_SUBST(X_CFLAGS)
AC_SUBST(X_PRE_LIBS)
AC_SUBST(X_EXTRA_LIBS)
AC_SUBST(X_LIBS)
dnl ==========================================================================
dnl ============================= sys plugins ================================
dnl ==========================================================================
...
...
@@ -416,6 +427,10 @@ GST_CHECK_FEATURE(OSS, [OSS audio], osssrc osssink, [
AC_CHECK_HEADER(sys/soundcard.h, HAVE_OSS="yes", HAVE_OSS="no")
])
dnl *** QuickCam ***
translit(dnm, m, l) AM_CONDITIONAL(USE_QCAM, true)
GST_CHECK_FEATURE(QCAM, [QuickCam], qcamsrc, HAVE_QCAM="yes")
dnl *** Video 4 Linux ***
translit(dnm, m, l) AM_CONDITIONAL(USE_V4L, true)
GST_CHECK_FEATURE(V4L, [Video 4 Linux], v4lsrc, [
...
...
@@ -434,7 +449,11 @@ GST_CHECK_FEATURE(VGA, [VGA], vgavideosink, [
AC_CHECK_HEADER(asm/vga.h, HAVE_VGA="yes", HAVE_VGA="no")
])
dnl *** XVideo ***
translit(dnm, m, l) AM_CONDITIONAL(USE_XVIDEO, true)
GST_CHECK_FEATURE(XVIDEO, [X11 XVideo extensions], xvideosink, [
GST_CHECK_LIBHEADER(XVIDEO, Xv, XvQueryExtension, $X_LIBS $X_PRE_LIBS -lXext -lX11 $X_EXTRA_LIBS, X11/extensions/Xvlib.h)
])
dnl Next, check for the optional libraries:
dnl These are all libraries used in building plugins
...
...
@@ -747,28 +766,6 @@ main() { atomic_t t; atomic_set(&t,0); atomic_inc(&t); atomic_add(1,&t);return 0
fi
dnl Check for X11 extensions
AC_PATH_XTRA
if test "-DX_DISPLAY_MISSING" = "$X_CFLAGS"; then
AC_MSG_ERROR(can not find X11)
fi
AC_SUBST(X_CFLAGS)
AC_SUBST(X_PRE_LIBS)
AC_SUBST(X_EXTRA_LIBS)
AC_SUBST(X_LIBS)
dnl Check for the Xv library
xvsave_LIBS=${LIBS}
AC_CHECK_LIB(Xv, XvQueryExtension,
HAVE_LIBXV=yes,
HAVE_LIBXV=no,
$X_LIBS $X_PRE_LIBS -lXext -lX11 $X_EXTRA_LIBS
)
LIBS=${xvsave_LIBS}
AC_CHECK_HEADER(X11/extensions/Xv.h, :, HAVE_LIBXV=no)
AC_CHECK_HEADER(X11/extensions/Xvlib.h, :, HAVE_LIBXV=no)
dnl ######################################################################
dnl # Check command line parameters, and set shell variables accordingly #
...
...
sys/Makefile.am
View file @
a221ccfe
...
...
@@ -5,6 +5,12 @@ else
OSS_SUBDS
=
endif
if
USE_QCAM
QCAM_SUBDS
=
qcam
else
QCAM_SUBDS
=
endif
if
USE_V4L
V4L_SUBDS
=
v4l
else
...
...
@@ -23,7 +29,14 @@ else
VGA_SUBDS
=
endif
SUBDIRS
=
$(OSS_SUBDS)
qcam
$(V4L_SUBDS)
$(VCD_SUBDS)
$(VGA_SUBDS)
xvideo
if
USE_XVIDEO
XVIDEO_SUBDS
=
xvideo
else
XVIDEO_SUBDS
=
endif
SUBDIRS
=
$(OSS_SUBDS)
$(QCAM_SUBDS)
$(V4L_SUBDS)
$(VCD_SUBDS)
\
$(VGA_SUBDS)
$(XVIDEO_SUBDS)
DIST_SUBDIRS
=
oss qcam v4l vcd vga xvideo
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