From: RĂ©mi Denis-Courmont Date: Wed, 10 Dec 2008 17:30:35 +0000 (+0200) Subject: Enable the decomp plugin X-Git-Tag: 1.0.0-pre1~1857 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=d81b33c3860803230eeb33c42709ab9d123d3a54;p=vlc Enable the decomp plugin --- diff --git a/NEWS b/NEWS index a926ec8189..7f8895410a 100644 --- a/NEWS +++ b/NEWS @@ -9,6 +9,7 @@ Playback: Access: * RTSP authentication with Darwin Streaming Server + * On-the-fly gzip and bzip2 file decompression (except on Windows) Inputs: * Mouse cursor support in x11 and win32 screen modules diff --git a/modules/stream_filter/Modules.am b/modules/stream_filter/Modules.am index 2d96ec9eaa..91bce81ba4 100644 --- a/modules/stream_filter/Modules.am +++ b/modules/stream_filter/Modules.am @@ -4,3 +4,8 @@ SOURCES_stream_filter_record = record.c libvlc_LTLIBRARIES += \ libstream_filter_record_plugin.la \ $(NULL) +if !HAVE_WIN32 +if !HAVE_WINCE +libvlc_LTLIBRARIES += libdecomp_plugin.la +endif +endif