Commit d4c32e83 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

shm: move rules out of configure.ac

parent 6e4820dd
......@@ -1054,10 +1054,8 @@ ALIASES="${ALIASES} cvlc rvlc"
dnl
dnl Some plugins aren't useful on some platforms
dnl
if test "${SYS}" = "os2"; then
if test "${SYS}" != "mingw32"; 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
......
......@@ -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
......
......@@ -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 \
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment