diff options
author | Stefan Reiff <kroko87@hotmail.com> | 2019-05-12 20:38:34 +0200 |
---|---|---|
committer | Kevin Daudt <kdaudt@alpinelinux.org> | 2019-05-12 18:45:42 +0000 |
commit | 47965644c390b1be1117769b1e08b31858267e9a (patch) | |
tree | ba023325b86137b9029260d1ad6b7f589ead0ad5 /testing/vdr/include-missing-limits.patch | |
parent | eec40699d855bb9a8e14c913acb392cd60189d1c (diff) | |
download | aports-47965644c390b1be1117769b1e08b31858267e9a.tar.bz2 aports-47965644c390b1be1117769b1e08b31858267e9a.tar.xz |
testing/vdr: update/add plugins and add configs
update femon and vnsiserver plugin
add epgsearch, dvbapi, svdrpservice and vdrmanager plugin
re-enable skincurses plugin
add init script
add configs for vdr and all plugins
add vdr user and group on install
fix build with debug symbols (include-missing-limits.patch)
fix streamdev Makefile
apply available upstream patches (at the moment 33)
Diffstat (limited to 'testing/vdr/include-missing-limits.patch')
-rw-r--r-- | testing/vdr/include-missing-limits.patch | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/testing/vdr/include-missing-limits.patch b/testing/vdr/include-missing-limits.patch new file mode 100644 index 0000000000..9ce9b3e5cc --- /dev/null +++ b/testing/vdr/include-missing-limits.patch @@ -0,0 +1,25 @@ +vdr package uses some macros like HOST_NAME_MAX, NAME_MAX, which are defined +in limits.h. +Needs to be explicitly included on ppc64le and for all archs for debug build. +---- + +--- a/config.h ++++ b/config.h +@@ -19,6 +19,7 @@ + #include "i18n.h" + #include "font.h" + #include "tools.h" ++#include <limits.h> + + // VDR's own version number: + +--- a/tools.c ++++ b/tools.c +@@ -27,6 +27,7 @@ + #include <utime.h> + #include "i18n.h" + #include "thread.h" ++#include <limits.h> + + int SysLogLevel = 3; + |