diff options
author | Klaus Schmidinger <kls (at) cadsoft (dot) de> | 2005-06-19 18:00:00 +0200 |
---|---|---|
committer | Klaus Schmidinger <kls (at) cadsoft (dot) de> | 2005-06-19 18:00:00 +0200 |
commit | fef3aa3a7fff0e3b4745532a6b1a157b45cb9643 (patch) | |
tree | 7d97c031765c5fe7ae7ebd9420809b663c45a172 /vdr.c | |
parent | a616d4b8597cfb69af7a8f0e0a96da2143970ffe (diff) | |
download | vdr-patch-lnbsharing-fef3aa3a7fff0e3b4745532a6b1a157b45cb9643.tar.gz vdr-patch-lnbsharing-fef3aa3a7fff0e3b4745532a6b1a157b45cb9643.tar.bz2 |
Version 1.3.27vdr-1.3.27
- Fixed handling 'page down', which was broken in version 1.3.26 (thanks to Udo
Richter).
- Modified page scrolling behaviour (based on a suggestion by Patrick Gleichmann).
- The new setup option "OSD/Scroll wraps" can be used to activate wrapping around
in menu lists (based on a suggestion by Patrick Gleichmann).
- Removed the NPTL check at startup, since several users have reported that VDR
now runs fine with NPTL.
- Fixed handling VPS timers, so that they only record if the event they are assigned
to actually has the given VPS time.
- Disabled cVideoRepacker in remux.c, because it has caused several problems
during recording. If you want to test (and maybe debug) it, activate the line
//#define TEST_cVideoRepacker
in remux.c.
- When drawing a bitmap to the OSD, the existing palette of the target can now be
replaced with the new one instead of adding the new entries (thanks to Andreas
Regel).
Diffstat (limited to 'vdr.c')
-rw-r--r-- | vdr.c | 13 |
1 files changed, 1 insertions, 12 deletions
@@ -22,7 +22,7 @@ * * The project's page is at http://www.cadsoft.de/vdr * - * $Id: vdr.c 1.207 2005/05/26 10:45:29 kls Exp $ + * $Id: vdr.c 1.208 2005/06/18 11:19:07 kls Exp $ */ #include <getopt.h> @@ -302,17 +302,6 @@ int main(int argc, char *argv[]) return 0; } -#ifdef _CS_GNU_LIBPTHREAD_VERSION - // Check for NPTL and exit if present - VDR apparently doesn't run well with NPTL: - char LibPthreadVersion[128]; - if (confstr(_CS_GNU_LIBPTHREAD_VERSION, LibPthreadVersion, sizeof(LibPthreadVersion)) > 0) { - if (strstr(LibPthreadVersion, "NPTL")) { - fprintf(stderr, "vdr: please turn off NPTL by setting 'export LD_ASSUME_KERNEL=2.4.1' before starting VDR\n"); - return 2; - } - } -#endif - // Check for UTF-8 and exit if present - asprintf() will fail if it encounters 8 bit ASCII codes char *LangEnv; if ((LangEnv = getenv("LANG")) != NULL && strcasestr(LangEnv, "utf") || |