mirror of
				https://github.com/vdr-projects/vdr.git
				synced 2025-03-01 10:50:46 +00:00 
			
		
		
		
	- Fixed the TS to PES repacker so that it works with MPEG1 streams (thanks to Andreas Kool). - Fixed keeping track of the current channel number when moving channels in the "Channels" menu (thanks to Mirko Günther for reporting this one). - Made the plugin library directory configurable via Make.config (thanks to Ludwig Nussel). - Fixed scaling SPU bitmaps in Letterbox mode when playing NTSC material. In order to do this, the cDevice was given a new member function GetVideoSystem(). - Fixed two warnings when compiling with gcc 3.3.1 (thanks to Alfred Zastrow for reporting this). - Made crc32() a static function in libdtv/libsi/si_parser.c to avoid a name clash when using other libraries that also implement a function by that name (thanks to Reinhard Nissl for reporting this one). - Fixed staying off the end of an ongoing recording while replaying in time shift mode (thanks to Rainer Zocholl for reporting this one). - VDR now stops with exit status 2 if one of the configuration files can't be read correctly at program startup (suggested by Rainer Zocholl). - Fixed a crash when starting "Pause live video" twice within the same minute on the same channel. - Fixed freezing replay if a timer starts while in Transfer Mode from the device used by the timer, and the timer needs a different transponder (thanks to Richard Robson for reporting this one). - Fixed toggling channels with the '0' key (thanks to Mirko Günther for reporting this one). - Made the "Zap timeout" (the time until a channel counts as "previous" for switching with '0') a setup variable, available in "Setup/Miscellaneous" (suggested by Helmut Auer). - Removing deleted recordings faster than normal when cutting, to avoid running out of disk space (thanks to Manfred Schmidt-Voigt for reporting this one).
		
			
				
	
	
		
			151 lines
		
	
	
		
			3.3 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			151 lines
		
	
	
		
			3.3 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
#
 | 
						|
# Makefile for the Video Disk Recorder
 | 
						|
#
 | 
						|
# See the main source file 'vdr.c' for copyright information and
 | 
						|
# how to reach the author.
 | 
						|
#
 | 
						|
# $Id: Makefile 1.58 2003/08/09 11:09:45 kls Exp $
 | 
						|
 | 
						|
.DELETE_ON_ERROR:
 | 
						|
 | 
						|
CC       ?= gcc
 | 
						|
CFLAGS   ?= -O2
 | 
						|
 | 
						|
CXX      ?= g++
 | 
						|
CXXFLAGS ?= -g -O2 -Wall -Woverloaded-virtual
 | 
						|
 | 
						|
DVBDIR   = ../DVB
 | 
						|
DTVDIR   = ./libdtv
 | 
						|
MANDIR   = /usr/local/man
 | 
						|
BINDIR   = /usr/local/bin
 | 
						|
 | 
						|
PLUGINDIR= ./PLUGINS
 | 
						|
PLUGINLIBDIR= $(PLUGINDIR)/lib
 | 
						|
 | 
						|
VIDEODIR = /video
 | 
						|
 | 
						|
DOXYGEN  = /usr/bin/doxygen
 | 
						|
DOXYFILE = Doxyfile
 | 
						|
 | 
						|
-include Make.config
 | 
						|
 | 
						|
INCLUDES = -I$(DVBDIR)/include
 | 
						|
 | 
						|
DTVLIB   = $(DTVDIR)/libdtv.a
 | 
						|
 | 
						|
OBJS = audio.o channels.o ci.o config.o cutter.o device.o diseqc.o dvbdevice.o dvbosd.o\
 | 
						|
       dvbplayer.o dvbspu.o eit.o eitscan.o font.o i18n.o interface.o keys.o\
 | 
						|
       lirc.o menu.o menuitems.o osdbase.o osd.o player.o plugin.o rcu.o\
 | 
						|
       receiver.o recorder.o recording.o remote.o remux.o ringbuffer.o sources.o\
 | 
						|
       spu.o status.o svdrp.o thread.o timers.o tools.o transfer.o vdr.o videodir.o
 | 
						|
 | 
						|
OSDFONT = -adobe-helvetica-medium-r-normal--23-*-100-100-p-*-iso8859-1
 | 
						|
FIXFONT = -adobe-courier-bold-r-normal--25-*-100-100-m-*-iso8859-1
 | 
						|
 | 
						|
ifndef NO_KBD
 | 
						|
DEFINES += -DREMOTE_KBD
 | 
						|
endif
 | 
						|
 | 
						|
DEFINES += -DREMOTE_$(REMOTE)
 | 
						|
 | 
						|
DEFINES += -D_GNU_SOURCE
 | 
						|
 | 
						|
DEFINES += -DVIDEODIR=\"$(VIDEODIR)\"
 | 
						|
DEFINES += -DPLUGINDIR=\"$(PLUGINLIBDIR)\"
 | 
						|
 | 
						|
ifdef DEBUG_OSD
 | 
						|
DEFINES += -DDEBUG_OSD
 | 
						|
NCURSESLIB = -lncurses
 | 
						|
endif
 | 
						|
 | 
						|
ifdef VFAT
 | 
						|
# for people who want their video directory on a VFAT partition
 | 
						|
DEFINES += -DVFAT
 | 
						|
endif
 | 
						|
 | 
						|
all: vdr
 | 
						|
font: genfontfile fontfix.c fontosd.c
 | 
						|
	@echo "font files created."
 | 
						|
 | 
						|
# Implicit rules:
 | 
						|
 | 
						|
%.o: %.c
 | 
						|
	$(CXX) $(CXXFLAGS) -c $(DEFINES) $(INCLUDES) $<
 | 
						|
 | 
						|
# Dependencies:
 | 
						|
 | 
						|
MAKEDEP = $(CXX) -MM -MG
 | 
						|
DEPFILE = .dependencies
 | 
						|
$(DEPFILE): Makefile
 | 
						|
	@$(MAKEDEP) $(DEFINES) $(INCLUDES) $(OBJS:%.o=%.c) > $@
 | 
						|
 | 
						|
-include $(DEPFILE)
 | 
						|
 | 
						|
# The main program:
 | 
						|
 | 
						|
vdr: $(OBJS) $(DTVLIB)
 | 
						|
	$(CXX) $(CXXFLAGS) -rdynamic $(OBJS) $(NCURSESLIB) -ljpeg -lpthread -ldl $(LIBDIRS) $(DTVLIB) -o vdr
 | 
						|
 | 
						|
# The font files:
 | 
						|
 | 
						|
fontfix.c:
 | 
						|
	./genfontfile "cFont::tPixelData FontFix" "$(FIXFONT)" > $@
 | 
						|
fontosd.c:
 | 
						|
	./genfontfile "cFont::tPixelData FontOsd" "$(OSDFONT)" > $@
 | 
						|
 | 
						|
# The font file generator:
 | 
						|
 | 
						|
genfontfile: genfontfile.c
 | 
						|
	$(CC) $(CFLAGS) -o $@ -L/usr/X11R6/lib $< -lX11
 | 
						|
 | 
						|
# The libdtv library:
 | 
						|
 | 
						|
$(DTVLIB) $(DTVDIR)/libdtv.h:
 | 
						|
	$(MAKE) -C $(DTVDIR) all
 | 
						|
 | 
						|
# The 'include' directory (for plugins):
 | 
						|
 | 
						|
include-dir:
 | 
						|
	@mkdir -p include/vdr
 | 
						|
	@(cd include/vdr; for i in ../../*.h; do ln -fs $$i .; done)
 | 
						|
 | 
						|
# Plugins:
 | 
						|
 | 
						|
plugins: include-dir
 | 
						|
	@for i in `ls $(PLUGINDIR)/src | grep -v '[^a-z0-9]'`; do $(MAKE) -C "$(PLUGINDIR)/src/$$i" all; done
 | 
						|
 | 
						|
plugins-clean:
 | 
						|
	@for i in `ls $(PLUGINDIR)/src | grep -v '[^a-z0-9]'`; do $(MAKE) -C "$(PLUGINDIR)/src/$$i" clean; done
 | 
						|
	@-rm -f $(PLUGINLIBDIR)/*
 | 
						|
 | 
						|
# Install the files:
 | 
						|
 | 
						|
install:
 | 
						|
	@cp vdr runvdr $(BINDIR)
 | 
						|
	@gzip -c vdr.1 > $(MANDIR)/man1/vdr.1.gz
 | 
						|
	@gzip -c vdr.5 > $(MANDIR)/man5/vdr.5.gz
 | 
						|
	@if [ ! -d $(VIDEODIR) ]; then\
 | 
						|
            mkdir $(VIDEODIR);\
 | 
						|
            cp *.conf $(VIDEODIR);\
 | 
						|
            fi
 | 
						|
 | 
						|
# Source documentation:
 | 
						|
 | 
						|
srcdoc:
 | 
						|
	@cp $(DOXYFILE) $(DOXYFILE).tmp
 | 
						|
	@echo PROJECT_NUMBER = `grep VDRVERSION config.h | awk '{ print $$3 }'` >> $(DOXYFILE).tmp
 | 
						|
	$(DOXYGEN) $(DOXYFILE).tmp
 | 
						|
	@rm $(DOXYFILE).tmp
 | 
						|
 | 
						|
# Housekeeping:
 | 
						|
 | 
						|
clean:
 | 
						|
	$(MAKE) -C $(DTVDIR) clean
 | 
						|
	-rm -f $(OBJS) $(DEPFILE) vdr genfontfile genfontfile.o core* *~
 | 
						|
	-rm -rf include
 | 
						|
	-rm -rf srcdoc
 | 
						|
fontclean:
 | 
						|
	-rm -f fontfix.c fontosd.c
 | 
						|
CLEAN: clean fontclean
 | 
						|
 |