Lines Matching +full:off +full:- +full:codec
4 Subject: [PATCH] build: use pkg-config to get tremor libs
9 Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
10 ---
11 configure.ac | 9 +--------
12 modules/codec/Makefile.am | 2 +-
13 2 files changed, 2 insertions(+), 9 deletions(-)
15 diff --git a/configure.ac b/configure.ac
17 --- a/configure.ac
19 @@ -2710,14 +2710,7 @@ PKG_ENABLE_MODULES_VLC([VORBIS], [], [ogg vorbis >= 1.1 vorbisenc >= 1.1], […
23 -AC_ARG_ENABLE(tremor,
24 - [ --enable-tremor Tremor decoder support (default disabled)])
25 -if test "${enable_tremor}" = "yes"
26 -then
27 - AC_CHECK_HEADERS(tremor/ivorbiscodec.h, [
28 - VLC_ADD_PLUGIN([tremor])
29 - ],[])
30 -fi
35 diff --git a/modules/codec/Makefile.am b/modules/codec/Makefile.am
37 --- a/modules/codec/Makefile.am
38 +++ b/modules/codec/Makefile.am
39 @@ -318,7 +318,7 @@ codec_LTLIBRARIES += $(LTLIBdaala)
40 libtremor_plugin_la_SOURCES = codec/vorbis.c
41 libtremor_plugin_la_CPPFLAGS = $(AM_CPPFLAGS) -DMODULE_NAME_IS_tremor
42 libtremor_plugin_la_LDFLAGS = $(AM_LDFLAGS) -rpath '$(codecdir)'
43 -libtremor_plugin_la_LIBADD = -lvorbisdec -logg
48 --