1
mirror of https://code.videolan.org/videolan/vlc synced 2024-09-16 16:02:54 +02:00

accesstweaks: compile as part of test suite

This avoids having to enable it explicitly in configure, while also not
installing it by default outside build trees. In the unlikely event
that you actually want to install the plugin, you can still do so but
manually (e.g. libtool install mode).
This commit is contained in:
Rémi Denis-Courmont 2017-11-28 19:18:32 +02:00
parent 0ef201d8cc
commit 8ff4b51484
3 changed files with 2 additions and 11 deletions

View File

@ -4089,14 +4089,6 @@ AS_IF([test "${enable_kwallet}" != "no" -a "${have_dbus}" = "yes"], [
VLC_ADD_PLUGIN([kwallet])
])
dnl
dnl Developers helper modules (should be hidden from configure help)
dnl
AC_ARG_ENABLE(devtools, [], [], [enable_devtools="no"])
AS_IF([test "${enable_devtools}" != "no"], [
VLC_ADD_PLUGIN([accesstweaks])
])
dnl
dnl update checking system
dnl

View File

@ -1,4 +1,5 @@
noinst_LTLIBRARIES =
check_LTLIBRARIES =
pkglib_LTLIBRARIES =
noinst_HEADERS =
check_PROGRAMS =

View File

@ -45,10 +45,8 @@ stream_filter_LTLIBRARIES += $(LTLIBaribcam)
EXTRA_LTLIBRARIES += libaribcam_plugin.la
libaccesstweaks_plugin_la_SOURCES = stream_filter/accesstweaks.c
libaccesstweaks_plugin_la_CFLAGS = $(AM_CFLAGS)
libaccesstweaks_plugin_la_LDFLAGS = $(AM_LDFLAGS) -rpath '$(stream_filterdir)'
stream_filter_LTLIBRARIES += $(LTLIBaccesstweaks)
EXTRA_LTLIBRARIES += libaccesstweaks_plugin.la
check_LTLIBRARIES += libaccesstweaks_plugin.la
libadf_plugin_la_SOURCES = stream_filter/adf.c
stream_filter_LTLIBRARIES += libadf_plugin.la