diff options
author | Christian Wieninger <cwieninger (at) gmx (dot) de> | 2009-07-20 19:12:53 +0200 |
---|---|---|
committer | Christian Wieninger <cwieninger (at) gmx (dot) de> | 2009-07-20 19:12:53 +0200 |
commit | c520eb8aa2babc33577a7d66b2057a4c79e12b7f (patch) | |
tree | 026588ebabbf079d169a941bc3c7ef091fa253d1 | |
parent | 0b09a1e3ca117a0306aff5db6cdf3283fb8457de (diff) | |
download | vdr-plugin-epgsearch-c520eb8aa2babc33577a7d66b2057a4c79e12b7f.tar.gz vdr-plugin-epgsearch-c520eb8aa2babc33577a7d66b2057a4c79e12b7f.tar.bz2 |
some fixes regarding libtre includes
-rw-r--r-- | HISTORY | 2 | ||||
-rw-r--r-- | HISTORY.DE | 1 | ||||
-rw-r--r-- | Makefile | 1 | ||||
-rw-r--r-- | blacklist.c | 5 | ||||
-rw-r--r-- | epgsearchext.c | 5 | ||||
-rw-r--r-- | epgsearchtools.c | 2 |
6 files changed, 5 insertions, 11 deletions
@@ -76,7 +76,7 @@ fixes: - fixed some memory leaks, thanks to Bittor Corl for providing a patch - some fixes to compile with gcc-4.4, thanks to firefly@vdrportal for providing a patch - fixed wrong man section of some man pages, thanks to Ville Skyttä for providing a patch - +- some fixes regarding libtre includes, thanks to Ville Skyttä for providing a patch 2008-04-29: Version 0.9.24 new: @@ -81,6 +81,7 @@ fixes: - Einige Korrekturen damit es mit gcc-4.4 compiliert, Danke an firefly@vdrportal für einen Patch. - Falsche Man-Sektion einiger Man-Pages korrigiert, Danke an Ville Skyttä für den Patch. +- Einige Korrekturen bzgl. libtre-Includes, Danke an Ville Skyttä für den Patch. 2008-04-29: Version 0.9.24 @@ -147,6 +147,7 @@ ifdef HAVE_LIBTRE LIBS += -L$(shell pkg-config --variable=libdir tre) $(shell pkg-config --libs tre) #LIBS += -L/usr/lib -ltre DEFINES += -DHAVE_LIBTRE +INCLUDE += $(shell pkg-config --cflags tre) endif ifdef USE_PINPLUGIN diff --git a/blacklist.c b/blacklist.c index 5780182..eca9e35 100644 --- a/blacklist.c +++ b/blacklist.c @@ -32,11 +32,6 @@ The project's page is at http://winni.vdr-developer.org/epgsearch #include "menu_searchedit.h" #include "menu_searchresults.h" #include <math.h> -#ifdef HAVE_PCREPOSIX -#include <pcreposix.h> -#else -#include <regex.h> -#endif cBlacklists Blacklists; diff --git a/epgsearchext.c b/epgsearchext.c index a2b30a2..32e9c40 100644 --- a/epgsearchext.c +++ b/epgsearchext.c @@ -38,11 +38,6 @@ The project's page is at http://winni.vdr-developer.org/epgsearch #include "uservars.h" #include "blacklist.h" #include <math.h> -#ifdef HAVE_PCREPOSIX -#include <pcreposix.h> -#else -#include <regex.h> -#endif cSearchExts SearchExts; cSearchExts SearchTemplates; diff --git a/epgsearchtools.c b/epgsearchtools.c index 7a08a9f..3748ba5 100644 --- a/epgsearchtools.c +++ b/epgsearchtools.c @@ -44,6 +44,8 @@ The project's page is at http://winni.vdr-developer.org/epgsearch #ifdef HAVE_PCREPOSIX #include <pcreposix.h> +#elif defined(HAVE_LIBTRE) +#include <tre/regex.h> #else #include <regex.h> #endif |