diff options
author | Dieter Hametner <dh (plus) vdr (at) gekrumbel (dot) de> | 2011-02-20 23:57:54 +0100 |
---|---|---|
committer | Dieter Hametner <dh (plus) vdr (at) gekrumbel (dot) de> | 2011-02-20 23:57:54 +0100 |
commit | 807abfa101f275ba75708e59c442b4269bcc643e (patch) | |
tree | 33059c75f244b1197cafd9b804ab4f74cc22967c /Makefile | |
parent | 404153241e18785f44fe87d065677f57231679b1 (diff) | |
download | vdr-plugin-live-807abfa101f275ba75708e59c442b4269bcc643e.tar.gz vdr-plugin-live-807abfa101f275ba75708e59c442b4269bcc643e.tar.bz2 |
Modified Makefile to support older versions of pcre libraries (e.g.
before version 8.01). PCRE must be compiled with C++ support to be
usable in LIVE. This change is a fix provided by user URIG in the
followin vdr-portal.de posting:
http://www.vdr-portal.de/board/thread.php?postid=981217#post981217
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -49,7 +49,7 @@ TNTVERS7 = $(shell ver=$(TNTVERSION); if [ $$ver -ge "1606" ]; then echo "yes" CXXFLAGS += $(shell tntnet-config --cxxflags) LIBS += $(shell tntnet-config --libs) CXXFLAGS += $(shell pcre-config --cflags) -LIBS += $(shell pcre-config --libs-cpp) +LIBS += $(shell pcre-config --libs) -lpcrecpp ### The name of the distribution archive: |