diff options
author | Frank Neumann <fnu@yavdr.org> | 2017-05-07 17:15:11 +0200 |
---|---|---|
committer | Frank Neumann <fnu@yavdr.org> | 2017-05-07 17:15:11 +0200 |
commit | f00a0d4a06e59a65d1bd1b48cc1dcb1c1355ba7e (patch) | |
tree | beea5df4e6bc71dffa9cef39f45234644c0cd681 | |
parent | 9a88fe383b470066bc5ff9376cbac674dd556874 (diff) | |
download | vdr-plugin-epgsearch-f00a0d4a06e59a65d1bd1b48cc1dcb1c1355ba7e.tar.gz vdr-plugin-epgsearch-f00a0d4a06e59a65d1bd1b48cc1dcb1c1355ba7e.tar.bz2 |
Lock to VDR version 2.2.0.
-rw-r--r-- | epgsearch.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/epgsearch.c b/epgsearch.c index ca06e83..6ab0489 100644 --- a/epgsearch.c +++ b/epgsearch.c @@ -69,7 +69,11 @@ The project's page is at http://winni.vdr-developer.org/epgsearch #include "confdloader.h" #include "pending_notifications.h" -static const char VERSION[] = "2.2.0"; +#if defined(APIVERSNUM) && (APIVERSNUM < 20200 || APIVERSNUM > 20300) +#error "VDR-2.2.0 API version is required!" +#endif + +statir const char VERSION[] = "2.2.0"; static const char DESCRIPTION[] = trNOOP("search the EPG for repeats and more"); // globals |