mirror of
https://github.com/vdr-projects/vdr.git
synced 2025-03-01 10:50:46 +00:00
VDR developer version 2.1.8 is now available at ftp://ftp.tvdr.de/vdr/Developer/vdr-2.1.8.tar.bz2 A 'diff' against the previous version is available at ftp://ftp.tvdr.de/vdr/Developer/vdr-2.1.7-2.1.8.diff MD5 checksums: 1d2751e87def9b18b448513f24e635e9 vdr-2.1.8.tar.bz2 0487e037278f6f6684a7933674910f05 vdr-2.1.7-2.1.8.diff WARNING: ======== This is a *developer* version. Even though *I* use it in my productive environment, I strongly recommend that you only use it under controlled conditions and for testing and debugging. From the HISTORY file: - Updated the Italian OSD texts (thanks to Diego Pierotto). - Fixed "warning: invalid suffix on literal" with GCC 4.8 and C++11 (thanks to Joerg Bornkessel). - Fixed the link to "svdrpsend (1)" in the vdr.1 man page (thanks to Chris Mayo). - Updated the Finnish OSD texts (thanks to Rolf Ahrenberg). - Updated the Romanian OSD texts (thanks to Lucian Muresan). - Added functionality based on the "jumpplay" patch from Torsten Kunkel and Thomas Günther: + The new option "Setup/Replay/Pause replay when jumping to a mark" can be used to turn off pausing replay when jumping to an editing mark with the '9' key. + The new option "Setup/Replay/Skip edited parts" can be used to automatically skip the edited parts of a recording during replay, without the need to actually cut the recording. + The new option "Setup/Replay/Pause replay at last mark" can be used to make replay go into Pause mode when it has reached the last "end" mark. + The '8' key for testing an edited sequence now also jumps to the next *end* mark if "Setup/Replay/Skip edited parts" is active. This allows for testing edits in recordings that have actually been cut, as well as recordings that have not been cut, in case "Skip edited parts" is enabled. - Added support for "Satellite Channel Routing" (SCR) according to EN50607, also known as "JESS" (thanks to Manfred Völkel and Frank Neumann). - The keys '1' and '3' can now be used in replay mode to position an editing mark in "binary" mode (based on a patch from Rolf Ahrenberg, with modifications by Helmut Auer). See MANUAL, section "Editing a Recording". - The Yellow button in the "Setup/CAM" menu can now be used to put the selected CAM into a mode where it remains assigned to a device that is tuned to the current channel until the smart card it contains is activated and the CAM thus starts to descramble (see MANUAL, section "Setup/CAM" for details). - Updated the Estonian OSD texts (thanks to Arthur Konovalov). - Added ARGSDIR to the ONEDIR section of Make.config.template (suggested by Derek Kelly). - Made cRecording::GetResume() public (suggested by Stefan Braun). - Fixed setting the read index in cDvbPlayer::Goto() in case Still is false. - The function cDvbPlayer::Goto() now automatically calls Play() if Still is false. - Added support for LCN (Logical Channel Numbers), which plugins may use to sort channels (thanks to Rolf Ahrenberg).
81 lines
2.0 KiB
Plaintext
81 lines
2.0 KiB
Plaintext
#
|
|
# User defined Makefile options for the Video Disk Recorder
|
|
#
|
|
# Copy this file to 'Make.config' and change the parameters as necessary.
|
|
#
|
|
# See the main source file 'vdr.c' for copyright information and
|
|
# how to reach the author.
|
|
#
|
|
# $Id: Make.config.template 3.2 2015/01/30 15:18:47 kls Exp $
|
|
|
|
### The C compiler and options:
|
|
|
|
CC = gcc
|
|
CFLAGS = -g -O3 -Wall
|
|
|
|
CXX = g++
|
|
CXXFLAGS = -g -O3 -Wall -Werror=overloaded-virtual -Wno-parentheses
|
|
|
|
# Use 'make M32=1 ...' to build a 32-bit version of VDR on a 64-bit machine:
|
|
ifdef M32
|
|
CFLAGS += -m32
|
|
CXXFLAGS += -m32
|
|
endif
|
|
|
|
### The directory environment:
|
|
|
|
# Default directories (adjust as necessary or desired):
|
|
|
|
#PREFIX = /usr/local
|
|
#BINDIR = $(PREFIX)/bin
|
|
#INCDIR = $(PREFIX)/include
|
|
#LIBDIR = $(PREFIX)/lib/vdr
|
|
#LOCDIR = $(PREFIX)/share/locale
|
|
#MANDIR = $(PREFIX)/share/man
|
|
#PCDIR = $(PREFIX)/lib/pkgconfig
|
|
#RESDIR = $(PREFIX)/share/vdr
|
|
#DVBDIR = /usr/src/v4l-dvb/linux/include/uapi
|
|
|
|
#VIDEODIR = /srv/vdr/video
|
|
#CONFDIR = /var/lib/vdr
|
|
#ARGSDIR = /etc/vdr/conf.d
|
|
#CACHEDIR = /var/cache/vdr
|
|
|
|
# Overrides for preset/legacy configurations:
|
|
|
|
# Use 'make LCLBLD=1' to build locale and plugin files under the source directory:
|
|
ifdef LCLBLD
|
|
LOCDIR = $(CWD)/locale
|
|
PLUGINDIR = $(CWD)/PLUGINS
|
|
ifndef PLUGIN # don't overwrite for plugins with old makefiles
|
|
LIBDIR = $(PLUGINDIR)/lib
|
|
endif
|
|
HDRDIR = $(CWD)/include
|
|
endif
|
|
|
|
# Use 'make ONEDIR=1' to have all data in one single directory:
|
|
ifdef ONEDIR
|
|
VIDEODIR = /video
|
|
CACHEDIR = $(VIDEODIR)
|
|
CONFDIR = $(VIDEODIR)
|
|
ARGSDIR = $(VIDEODIR)/conf.d
|
|
RESDIR = $(VIDEODIR)
|
|
endif
|
|
|
|
# Use this if you want to have a central place where you configure compile time
|
|
# parameters for plugins:
|
|
#PLGCFG = $(CONFDIR)/plugins.mk
|
|
|
|
### The remote control:
|
|
|
|
LIRC_DEVICE = /var/run/lirc/lircd
|
|
|
|
### Define if you want vdr to not run as root:
|
|
#VDR_USER = vdr
|
|
|
|
### Fallback for plugins with old makefiles:
|
|
ifdef PLUGIN
|
|
CFLAGS += -fPIC
|
|
CXXFLAGS += -fPIC
|
|
endif
|