mirror of
https://github.com/vdr-projects/vdr.git
synced 2025-03-01 10:50:46 +00:00
- Fixed setting the OSD size in the 'Confirm' interface call (thanks to Deti Fliegl). - Removed the 'read incomplete section...' error message in the EIT processor. - Fixed channel data for "DW TV" (thanks to Axel Gruber). - Added DPID to "PREMIERE MOVIE 1" in channels.conf.cable (thanks to Stephan Schreiber). - Prepared the OSD functions for multiple overlapping windows. - Removed the check to see whether the system time is running linearly. - Improved performance of SVDRP command entry. - Removed EPGBugfixLevel '3' - after more than a year Pro-7 finally managed to broadcast the correct timestamps for EPG events between 0:00 and 6:00! - Fixed failing watchdog timer if program hangs in OSD activities (thanks to Carsten Koch). - No longer requiring 'libncurses' if compiling without DEBUG_OSD=1 and REMOTE=KBD (thanks to Lauri Pesonen). - The "Recordings" menu now displays a hierarchical structure if there are subdirectories for the recordings. This can be controlled through the "RecordingDirs" parameter in the "Setup" menu. See "MANUAL/Replaying a Recording" for details. - Improved speed of setting the Help button texts. - Fixed handling file names that contain single quotes (') or dollar signs ($) in the call to the shutdown command (option '-s') and the recording command (option '-r'). - Improved error handling in the editing process; the resulting file will be deleted if an error occured. - A message is now prompted at the end of the editing process, indicating whether the process succeeded or failed. - Fixed setting the LastActivity timestamp after a shutdown prompt (thanks to Sergei Haller). - A message is now prompted if free disk space becomes low during recording. - The editing process now calls AssertFreeDiskSpace() to remove deleted recordings if the disk becomes full. - The "Main" menu now displays in its title the used disk space (in percent) and the estimated free disk space (in hh:mm), assuming a data rate of 30 MB per minute. - Activating the "Recordings" menu now displays "scanning recordings..." to give the user some feedback in case this takes longer. - Status messages are now displayed centered. - Removed the 'Tools' subdirectory from the VDR archive. All contributed tools can now be found at ftp://ftp.cadsoft.de/pub/people/kls/vdr/Tools.
113 lines
2.3 KiB
Makefile
113 lines
2.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.29 2002/01/13 16:57:27 kls Exp $
|
|
|
|
.DELETE_ON_ERROR:
|
|
|
|
DVBDIR = ../DVB
|
|
DVDDIR = ../DVD
|
|
AC3DIR = ./ac3dec
|
|
DTVDIR = ./libdtv
|
|
|
|
INCLUDES = -I$(DVBDIR)/ost/include
|
|
|
|
DTVLIB = $(DTVDIR)/libdtv.a
|
|
|
|
ifdef DVD
|
|
INCLUDES += -I$(DVDDIR)/libdvdread
|
|
LIBDIRS += -L$(DVDDIR)/libdvdread/dvdread/.libs
|
|
DEFINES += -DDVDSUPPORT
|
|
DEFINES += -D_LARGEFILE64_SOURCE # needed by libdvdread
|
|
AC3LIB = $(AC3DIR)/libac3.a
|
|
DVDLIB = -ldvdread
|
|
endif
|
|
|
|
OBJS = config.o dvbapi.o dvbosd.o dvd.o eit.o font.o i18n.o interface.o menu.o osd.o\
|
|
recording.o remote.o remux.o ringbuffer.o svdrp.o thread.o tools.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 REMOTE
|
|
REMOTE = KBD
|
|
endif
|
|
|
|
ifeq ($(REMOTE), KBD)
|
|
NCURSESLIB = -lncurses
|
|
endif
|
|
|
|
DEFINES += -DREMOTE_$(REMOTE)
|
|
|
|
DEFINES += -D_GNU_SOURCE
|
|
|
|
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
|
|
g++ -g -O2 -Wall -Woverloaded-virtual -m486 -c $(DEFINES) $(INCLUDES) $<
|
|
|
|
# Dependencies:
|
|
|
|
MAKEDEP = g++ -MM -MG
|
|
DEPFILE = .dependencies
|
|
$(DEPFILE): Makefile
|
|
@$(MAKEDEP) $(DEFINES) $(INCLUDES) $(OBJS:%.o=%.c) > $@
|
|
|
|
include $(DEPFILE)
|
|
|
|
# The main program:
|
|
|
|
vdr: $(OBJS) $(AC3LIB) $(DTVLIB)
|
|
g++ -g -O2 $(OBJS) $(NCURSESLIB) -ljpeg -lpthread $(LIBDIRS) $(DVDLIB) $(AC3LIB) $(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
|
|
gcc -o $@ -O2 -L/usr/X11R6/lib $< -lX11
|
|
|
|
# The ac3dec library:
|
|
|
|
$(AC3LIB):
|
|
make -C $(AC3DIR) all
|
|
|
|
# The libdtv library:
|
|
|
|
$(DTVLIB) $(DTVDIR)/libdtv.h:
|
|
make -C $(DTVDIR) all
|
|
|
|
# Housekeeping:
|
|
|
|
clean:
|
|
make -C $(AC3DIR) clean
|
|
make -C $(DTVDIR) clean
|
|
-rm -f $(OBJS) $(DEPFILE) vdr genfontfile genfontfile.o core *~
|
|
fontclean:
|
|
-rm -f fontfix.c fontosd.c
|
|
CLEAN: clean fontclean
|
|
|