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 suggesting to only set the Makefile variables CXX and CXXFLAGS if they are not
|
||||
yet defined
|
||||
for fixing a problem with user defined CFLAGS in libdtv/libvdr/Makefile
|
||||
|
||||
Gerhard Steiner <steiner@mail.austria.com>
|
||||
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>
|
||||
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>
|
||||
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
|
||||
Dimitrakos).
|
||||
- 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
|
||||
CFLAGS = -O2 -g -pedantic -Wmissing-prototypes -Wstrict-prototypes \
|
||||
CC ?= gcc
|
||||
CFLAGS ?= -O2 -g -pedantic -Wmissing-prototypes -Wstrict-prototypes \
|
||||
-Wimplicit -D__USE_FIXED_PROTOTYPES__ # -DDEBUG
|
||||
|
||||
|
||||
|
@ -29,8 +29,9 @@
|
||||
#
|
||||
CC ?= gcc
|
||||
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
|
||||
ARFLAGS = r
|
||||
|
Loading…
Reference in New Issue
Block a user