mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Fixed handling user defined CFLAGS in libdtv/libvdr/Makefile
This commit is contained in:
parent
e2540aa898
commit
2da0c04c7c
@ -458,6 +458,7 @@ Robert Schiele <rschiele@uni-mannheim.de>
|
|||||||
for reporting some faulty default parameter initializations
|
for reporting some faulty default parameter initializations
|
||||||
for suggesting to only set the Makefile variables CXX and CXXFLAGS if they are not
|
for suggesting to only set the Makefile variables CXX and CXXFLAGS if they are not
|
||||||
yet defined
|
yet defined
|
||||||
|
for fixing a problem with user defined CFLAGS in libdtv/libvdr/Makefile
|
||||||
|
|
||||||
Gerhard Steiner <steiner@mail.austria.com>
|
Gerhard Steiner <steiner@mail.austria.com>
|
||||||
for suggesting that the SVDRP command PUTE shall trigger an immediate write of
|
for suggesting that the SVDRP command PUTE shall trigger an immediate write of
|
||||||
@ -503,6 +504,7 @@ Georg Hitsch <georg@hitsch.at>
|
|||||||
|
|
||||||
Clemens Kirchgatterer <clemens@thf.ath.cx>
|
Clemens Kirchgatterer <clemens@thf.ath.cx>
|
||||||
for suggesting to change source directory name for plugins from 'SRC' to 'src'
|
for suggesting to change source directory name for plugins from 'SRC' to 'src'
|
||||||
|
for reporting a problem with user defined CFLAGS in libdtv/libvdr/Makefile
|
||||||
|
|
||||||
Emil Naepflein <Emil.Naepflein@philosys.de>
|
Emil Naepflein <Emil.Naepflein@philosys.de>
|
||||||
for suggesting to take an active SVDRP connection into account when doing shutdown or
|
for suggesting to take an active SVDRP connection into account when doing shutdown or
|
||||||
|
2
HISTORY
2
HISTORY
@ -1938,3 +1938,5 @@ Video Disk Recorder Revision History
|
|||||||
- Fixed handling the LOG_LOCALn parameters in the -l option (thanks to Dimitrios
|
- Fixed handling the LOG_LOCALn parameters in the -l option (thanks to Dimitrios
|
||||||
Dimitrakos).
|
Dimitrakos).
|
||||||
- Changed EIT processing to always read a full section.
|
- Changed EIT processing to always read a full section.
|
||||||
|
- Fixed handling user defined CFLAGS in libdtv/libvdr/Makefile (thanks to Clemens
|
||||||
|
Kirchgatterer and Robert Schiele).
|
||||||
|
@ -27,8 +27,8 @@
|
|||||||
#
|
#
|
||||||
#
|
#
|
||||||
#
|
#
|
||||||
CC = gcc
|
CC ?= gcc
|
||||||
CFLAGS = -O2 -g -pedantic -Wmissing-prototypes -Wstrict-prototypes \
|
CFLAGS ?= -O2 -g -pedantic -Wmissing-prototypes -Wstrict-prototypes \
|
||||||
-Wimplicit -D__USE_FIXED_PROTOTYPES__ # -DDEBUG
|
-Wimplicit -D__USE_FIXED_PROTOTYPES__ # -DDEBUG
|
||||||
|
|
||||||
|
|
||||||
|
@ -29,8 +29,9 @@
|
|||||||
#
|
#
|
||||||
CC ?= gcc
|
CC ?= gcc
|
||||||
CFLAGS ?= -O2 -g -Wmissing-prototypes -Wstrict-prototypes \
|
CFLAGS ?= -O2 -g -Wmissing-prototypes -Wstrict-prototypes \
|
||||||
-Wimplicit -D__USE_FIXED_PROTOTYPES__ -I../include # -DDEBUG
|
-Wimplicit -D__USE_FIXED_PROTOTYPES__ # -DDEBUG
|
||||||
|
|
||||||
|
CFLAGS += -I../include
|
||||||
|
|
||||||
AR = ar
|
AR = ar
|
||||||
ARFLAGS = r
|
ARFLAGS = r
|
||||||
|
Loading…
Reference in New Issue
Block a user