mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Fixed libsi/Makefile to use the compiler defined in for generating file dependencies
This commit is contained in:
parent
7f3a706726
commit
b60120161a
@ -754,8 +754,8 @@ Christoph Friederich <christoph.friederich@gmx.de>
|
|||||||
|
|
||||||
Andreas Brachold <andy03@deltab.de>
|
Andreas Brachold <andy03@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' to use the compiler defined in $(CXX) for generating file
|
for fixing 'newplugin' and libsi/Makefile to use the compiler defined in $(CXX)
|
||||||
dependencies
|
for generating file dependencies
|
||||||
|
|
||||||
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
@ -3013,8 +3013,8 @@ Video Disk Recorder Revision History
|
|||||||
currently in use (it will then return a dummy cOsd object and write a message to
|
currently in use (it will then return a dummy cOsd object and write a message to
|
||||||
the log file).
|
the log file).
|
||||||
- Added Estonian language texts (thanks to Arthur Konovalov).
|
- Added Estonian language texts (thanks to Arthur Konovalov).
|
||||||
- Fixed 'newplugin' to use the compiler defined in $(CXX) for generating file
|
- Fixed 'newplugin' and libsi/Makefile to use the compiler defined in $(CXX) for
|
||||||
dependencies (thanks to Andreas Brachold).
|
generating file dependencies (thanks to Andreas Brachold).
|
||||||
- Moved the initialization of aPid1 and aPid2 to the beginning of cDvbDevice::cDvbDevice()
|
- Moved the initialization of aPid1 and aPid2 to the beginning of cDvbDevice::cDvbDevice()
|
||||||
to have them set in case a patch references them (thanks to Wayne Keer for pointing
|
to have them set in case a patch references them (thanks to Wayne Keer for pointing
|
||||||
this out).
|
this out).
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# Makefile for a libsi
|
# Makefile for a libsi
|
||||||
#
|
#
|
||||||
# $Id: Makefile 1.2 2003/12/13 10:41:39 kls Exp $
|
# $Id: Makefile 1.3 2004/10/16 13:31:50 kls Exp $
|
||||||
|
|
||||||
### The C++ compiler and options:
|
### The C++ compiler and options:
|
||||||
|
|
||||||
@ -30,7 +30,7 @@ OBJS = util.o si.o section.o descriptor.o
|
|||||||
|
|
||||||
# Dependencies:
|
# Dependencies:
|
||||||
|
|
||||||
MAKEDEP = g++ -MM -MG
|
MAKEDEP = $(CXX) -MM -MG
|
||||||
DEPFILE = .dependencies
|
DEPFILE = .dependencies
|
||||||
$(DEPFILE): Makefile
|
$(DEPFILE): Makefile
|
||||||
@$(MAKEDEP) $(DEFINES) $(INCLUDES) $(OBJS:%.o=%.c) > $@
|
@$(MAKEDEP) $(DEFINES) $(INCLUDES) $(OBJS:%.o=%.c) > $@
|
||||||
|
Loading…
Reference in New Issue
Block a user