mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
The 'plugins-clean' target of the Makefile now only deletes the actual plugin library files from this version of VDR
This commit is contained in:
parent
e972c0464a
commit
20d5179ae4
@ -791,10 +791,12 @@ Christoph Friederich <christoph.friederich@gmx.de>
|
|||||||
for reporting a bug in deleting the last recording in the "Recordings" menu, which
|
for reporting a bug in deleting the last recording in the "Recordings" menu, which
|
||||||
started pausing live video
|
started pausing live video
|
||||||
|
|
||||||
Andreas Brachold <andy03@deltab.de>
|
Andreas Brachold <vdr04@deltab.de>
|
||||||
for his support in keeping 'channels.conf.terr' up to date
|
for his support in keeping 'channels.conf.terr' up to date
|
||||||
for fixing 'newplugin' and libsi/Makefile to use the compiler defined in $(CXX)
|
for fixing 'newplugin' and libsi/Makefile to use the compiler defined in $(CXX)
|
||||||
for generating file dependencies
|
for generating file dependencies
|
||||||
|
for suggesting that the 'plugins-clean' target of the Makefile should only delete
|
||||||
|
the actual plugin library files from this version of VDR
|
||||||
|
|
||||||
Manuel Hartl <icecep@gmx.net>
|
Manuel Hartl <icecep@gmx.net>
|
||||||
for suggesting to extend the logging info when starting/stopping timers
|
for suggesting to extend the logging info when starting/stopping timers
|
||||||
|
4
HISTORY
4
HISTORY
@ -3374,7 +3374,7 @@ Video Disk Recorder Revision History
|
|||||||
out).
|
out).
|
||||||
- Added MPEG1 replay capability to cPesAssembler (thanks to Stefan Huelswitt).
|
- Added MPEG1 replay capability to cPesAssembler (thanks to Stefan Huelswitt).
|
||||||
|
|
||||||
2005-02-12: Version 1.3.21
|
2005-02-13: Version 1.3.21
|
||||||
|
|
||||||
- Fixed cDvbDevice::SetAudioTrackDevice() to avoid a blank screen after switching
|
- Fixed cDvbDevice::SetAudioTrackDevice() to avoid a blank screen after switching
|
||||||
back to live mode if a recording is currently active on the primary device.
|
back to live mode if a recording is currently active on the primary device.
|
||||||
@ -3406,3 +3406,5 @@ Video Disk Recorder Revision History
|
|||||||
Flynt for suggestions and experiments in that area).
|
Flynt for suggestions and experiments in that area).
|
||||||
- Making sure the first audio packet is not dropped when switching to "pre 1.3.19
|
- Making sure the first audio packet is not dropped when switching to "pre 1.3.19
|
||||||
Dolby Digital compatibility mode".
|
Dolby Digital compatibility mode".
|
||||||
|
- The 'plugins-clean' target of the Makefile now only deletes the actual plugin
|
||||||
|
library files from this version of VDR (suggested by Andreas Brachold).
|
||||||
|
10
Makefile
10
Makefile
@ -4,7 +4,7 @@
|
|||||||
# See the main source file 'vdr.c' for copyright information and
|
# See the main source file 'vdr.c' for copyright information and
|
||||||
# how to reach the author.
|
# how to reach the author.
|
||||||
#
|
#
|
||||||
# $Id: Makefile 1.73 2004/12/18 13:39:19 kls Exp $
|
# $Id: Makefile 1.74 2005/02/13 10:13:45 kls Exp $
|
||||||
|
|
||||||
.DELETE_ON_ERROR:
|
.DELETE_ON_ERROR:
|
||||||
|
|
||||||
@ -71,6 +71,10 @@ DEFINES += -D_GNU_SOURCE
|
|||||||
DEFINES += -DVIDEODIR=\"$(VIDEODIR)\"
|
DEFINES += -DVIDEODIR=\"$(VIDEODIR)\"
|
||||||
DEFINES += -DPLUGINDIR=\"$(PLUGINLIBDIR)\"
|
DEFINES += -DPLUGINDIR=\"$(PLUGINLIBDIR)\"
|
||||||
|
|
||||||
|
# The version number of VDR (taken from VDR's "config.h"):
|
||||||
|
|
||||||
|
VDRVERSION = $(shell grep 'define VDRVERSION ' config.h | awk '{ print $$3 }' | sed -e 's/"//g')
|
||||||
|
|
||||||
ifdef VFAT
|
ifdef VFAT
|
||||||
# for people who want their video directory on a VFAT partition
|
# for people who want their video directory on a VFAT partition
|
||||||
DEFINES += -DVFAT
|
DEFINES += -DVFAT
|
||||||
@ -166,7 +170,7 @@ plugins: include-dir
|
|||||||
|
|
||||||
plugins-clean:
|
plugins-clean:
|
||||||
@for i in `ls $(PLUGINDIR)/src | grep -v '[^a-z0-9]'`; do $(MAKE) -C "$(PLUGINDIR)/src/$$i" clean; done
|
@for i in `ls $(PLUGINDIR)/src | grep -v '[^a-z0-9]'`; do $(MAKE) -C "$(PLUGINDIR)/src/$$i" clean; done
|
||||||
@-rm -f $(PLUGINLIBDIR)/*
|
@-rm -f $(PLUGINLIBDIR)/libvdr-*.so.$(VDRVERSION)
|
||||||
|
|
||||||
# Install the files:
|
# Install the files:
|
||||||
|
|
||||||
@ -183,7 +187,7 @@ install:
|
|||||||
|
|
||||||
srcdoc:
|
srcdoc:
|
||||||
@cp $(DOXYFILE) $(DOXYFILE).tmp
|
@cp $(DOXYFILE) $(DOXYFILE).tmp
|
||||||
@echo PROJECT_NUMBER = `grep VDRVERSION config.h | awk '{ print $$3 }'` >> $(DOXYFILE).tmp
|
@echo PROJECT_NUMBER = $(VDRVERSION) >> $(DOXYFILE).tmp
|
||||||
$(DOXYGEN) $(DOXYFILE).tmp
|
$(DOXYGEN) $(DOXYFILE).tmp
|
||||||
@rm $(DOXYFILE).tmp
|
@rm $(DOXYFILE).tmp
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user