diff options
author | chriszero <zerov83@gmail.com> | 2015-01-11 15:14:03 +0100 |
---|---|---|
committer | chriszero <zerov83@gmail.com> | 2015-01-11 15:14:03 +0100 |
commit | 508ba3458094f0c30b278cc05abc626b6f3940e0 (patch) | |
tree | 12592e3fb841f80ad1c61d07b3f9242ad94d2cbe /Makefile | |
parent | a9dd0c6a322f139e03a0ba4570e2a78508ddd6c3 (diff) | |
download | vdr-plugin-plex-508ba3458094f0c30b278cc05abc626b6f3940e0.tar.gz vdr-plugin-plex-508ba3458094f0c30b278cc05abc626b6f3940e0.tar.bz2 |
Removed Mplayer support.
Added HLS Streaming Player for directly play in VDR
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -9,7 +9,7 @@ PLUGIN = plex -LIBS += -lPocoUtil -lPocoNet -lPocoNetSSL -lPocoXML -lPocoFoundation +LIBS += -lPocoUtil -lPocoNet -lPocoNetSSL -lPocoXML -lPocoFoundation -lpcrecpp ### Configuration (edit this for your needs) @@ -17,11 +17,11 @@ LIBS += -lPocoUtil -lPocoNet -lPocoNetSSL -lPocoXML -lPocoFoundation # FIXME: AVFS isn't working, corrupts memory #AVFS ?= $(shell test -x /usr/bin/avfs-config && echo 1) # use ffmpeg libswscale -SWSCALE ?= $(shell pkg-config --exists libswscale && echo 1) +#SWSCALE ?= $(shell pkg-config --exists libswscale && echo 1) # support png images -PNG ?= $(shell pkg-config --exists libpng && echo 1) +#PNG ?= $(shell pkg-config --exists libpng && echo 1) # support jpg images -JPG ?= $(shell test -r /usr/include/jpeglib.h && echo 1) +#JPG ?= $(shell test -r /usr/include/jpeglib.h && echo 1) CONFIG := #-DDEBUG # uncomment to build DEBUG @@ -49,7 +49,7 @@ endif _CFLAGS += $(shell pkg-config --cflags xcb xcb-image xcb-keysyms xcb-icccm) -LIBS += -lrt $(shell pkg-config --libs xcb xcb-image xcb-keysyms xcb-icccm) +#LIBS += -lrt $(shell pkg-config --libs xcb xcb-image xcb-keysyms xcb-icccm) ### The version number of this plugin (taken from the main source file): |