Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
d4c32e83
Commit
d4c32e83
authored
Sep 09, 2012
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shm: move rules out of configure.ac
parent
6e4820dd
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
9 deletions
+10
-9
configure.ac
configure.ac
+1
-3
modules/LIST
modules/LIST
+1
-1
modules/access/Modules.am
modules/access/Modules.am
+8
-5
No files found.
configure.ac
View file @
d4c32e83
...
...
@@ -1054,10 +1054,8 @@ ALIASES="${ALIASES} cvlc rvlc"
dnl
dnl Some plugins aren't useful on some platforms
dnl
if test "${SYS}"
= "os
2"; then
if test "${SYS}"
!= "mingw3
2"; then
VLC_ADD_PLUGIN([dynamicoverlay])
elif test "${SYS}" != "mingw32"; then
VLC_ADD_PLUGIN([dynamicoverlay access_shm])
elif test "${SYS}" = "darwin"; then
VLC_ADD_LIBS([quartztext],[-Wl,-framework,ApplicationServices])
fi
...
...
modules/LIST
View file @
d4c32e83
...
...
@@ -27,7 +27,6 @@ $Id$
* access_rar: RAR access
* access_realrtsp: Real RTSP access
* access_sftp: SFTP network access module
* access_shm: Shared memory framebuffer access module
* access_smb: SMB shares access module
* access_tcp: TCP Network access module
* access_udp: UDP Network access module
...
...
@@ -285,6 +284,7 @@ $Id$
* sepia: Sepia video filter
* sharpen: Sharpen video filter
* shine: MP3 encoder using Shine, a fixed point implementation
* shm: Shared memory framebuffer access module
* sid: Sidplay demuxer
* simple_channel_mixer: channel mixer
* skins2: Skinnable interface, new generation
...
...
modules/access/Modules.am
View file @
d4c32e83
...
...
@@ -120,11 +120,14 @@ endif
### Video capture ###
libaccess_shm_plugin_la_SOURCES = shm.c
libaccess_shm_plugin_la_CFLAGS = $(AM_CFLAGS)
libaccess_shm_plugin_la_LIBADD = $(AM_LIBADD)
libvlc_LTLIBRARIES += $(LTLIBaccess_shm)
EXTRA_LTLIBRARIES += libaccess_shm_plugin.la
libshm_plugin_la_SOURCES = shm.c
libshm_plugin_la_CFLAGS = $(AM_CFLAGS)
libshm_plugin_la_LIBADD = $(AM_LIBADD)
if !HAVE_WIN32
if !HAVE_OS2
libvlc_LTLIBRARIES += libshm_plugin.la
endif
endif
libv4l2_plugin_la_SOURCES = \
v4l2/videodev2.h \
...
...
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