Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
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
videolan
vlc-gpu
Commits
9862639c
Commit
9862639c
authored
Aug 19, 2011
by
Rafaël Carré
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix linking with libv4l2
parent
c22366aa
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
configure.ac
configure.ac
+1
-1
modules/access/Modules.am
modules/access/Modules.am
+2
-2
No files found.
configure.ac
View file @
9862639c
...
@@ -2009,7 +2009,7 @@ AC_ARG_ENABLE(libv4l2,
...
@@ -2009,7 +2009,7 @@ AC_ARG_ENABLE(libv4l2,
if test "${enable_libv4l2}" != "no" -a "${enable_v4l2}" != "no"
if test "${enable_libv4l2}" != "no" -a "${enable_v4l2}" != "no"
then
then
PKG_CHECK_MODULES( LIBV4L2, libv4l2, [
PKG_CHECK_MODULES( LIBV4L2, libv4l2, [
VLC_ADD_L
DFLAG
S([v4l2],[${LIBV4L2_LIBS}])
VLC_ADD_L
IB
S([v4l2],[${LIBV4L2_LIBS}])
VLC_ADD_CFLAGS([v4l2],[${LIBV4L2_CFLAGS}])
VLC_ADD_CFLAGS([v4l2],[${LIBV4L2_CFLAGS}])
AC_DEFINE(HAVE_LIBV4L2, 1, Define if libv4l2 is available)],
AC_DEFINE(HAVE_LIBV4L2, 1, Define if libv4l2 is available)],
AC_MSG_WARN([LibV4L2 support disabled because libv4l2 development headers were not found])
AC_MSG_WARN([LibV4L2 support disabled because libv4l2 development headers were not found])
...
...
modules/access/Modules.am
View file @
9862639c
...
@@ -123,8 +123,8 @@ libaccess_shm_plugin_la_DEPENDENCIES =
...
@@ -123,8 +123,8 @@ libaccess_shm_plugin_la_DEPENDENCIES =
libvlc_LTLIBRARIES += $(LTLIBaccess_shm)
libvlc_LTLIBRARIES += $(LTLIBaccess_shm)
libv4l2_plugin_la_SOURCES = v4l2.c
libv4l2_plugin_la_SOURCES = v4l2.c
libv4l2_plugin_la_CFLAGS = $(AM_CFLAGS)
libv4l2_plugin_la_CFLAGS = $(AM_CFLAGS)
$(CFLAGS_v4L2)
libv4l2_plugin_la_LIBADD = $(AM_LIBADD)
libv4l2_plugin_la_LIBADD = $(AM_LIBADD)
$(LDFLAGS_v4l2)
libv4l2_plugin_la_DEPENDENCIES =
libv4l2_plugin_la_DEPENDENCIES =
if HAVE_V4L2
if HAVE_V4L2
libvlc_LTLIBRARIES += libv4l2_plugin.la
libvlc_LTLIBRARIES += libv4l2_plugin.la
...
...
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