Re: [vdr] [DISCUSSION REQUEST] reintroduce a common make configuration file in VDR-1.7.35

2012-12-26 Thread Christopher Reimer
2012/12/25 Klaus Schmidinger : > >> 3.) the file should be included into plugin Makefiles after having set >> PLUGIN and VERSION to be able to have some plugin-/version-dependent >> configuration. > > > Agreed. > No. Not agreed. Just use DEFINES+= in Make.config, and if that doesn't work, plugin

Re: [vdr] [DISCUSSION REQUEST] reintroduce a common make configuration file in VDR-1.7.35

2012-12-26 Thread Reinhard Nissl
Hi, Am 26.12.2012 09:53, schrieb Christopher Reimer: 2012/12/25 Klaus Schmidinger : 3.) the file should be included into plugin Makefiles after having set PLUGIN and VERSION to be able to have some plugin-/version-dependent configuration. Agreed. No. Not agreed. Just use DEFINES+= in Mak

Re: [vdr] [DISCUSSION REQUEST] reintroduce a common make configuration file in VDR-1.7.35

2012-12-26 Thread Manuel Reimer
Reinhard Nissl wrote: I understand that this seems to be a quite simple solution, because in the end, almost any other configuration option will be converted to either compiler or linker settings. But it's quite lowlevel and one has to dig through the Makefile in depth to extract the necessary co

Re: [vdr] [DISCUSSION REQUEST] reintroduce a common make configuration file in VDR-1.7.35

2012-12-26 Thread Udo Richter
I've been doing things with Make.config too, and would like it to be available again. My plugins usually followed this pattern: -include $(VDRDIR)/Make.global -include $(VDRDIR)/Make.config -include Make.config so you always had the chance to have optional control without patching makefiles.

Re: [vdr] [DISCUSSION REQUEST] reintroduce a common make configuration file in VDR-1.7.35

2012-12-26 Thread Timothy D. Lenz
I prefer to keep files for a given program together in that programs tree. Not scatter all over the computer like ms. The only thing for vdr I move is the recordings because of the space required. All settings/config files for vdr belong in the vdr directory tree. On 12/25/2012 1:07 PM, Klaus

Re: [vdr] [ANNOUNCE] VDR developer version 1.7.34

2012-12-26 Thread Udo Richter
Am 24.12.2012 10:39, schrieb Klaus Schmidinger: - The plugin Makefiles now have a separate 'install' target (suggested by Christopher Reimer). In order to still allow the normal building of VDR (with all plugins in its ./PLUGINS/src subdirectory, the plugin libraries in ./PLUGINS/lib and

[vdr] Debugging facility in VDR Makefile(s)?

2012-12-26 Thread Eike
Hello! When I had a deeper look into VDR, I wondered why there seems to be no debugging facility. I added the following to VDR's Makefile: debug: CFLAGS += -DDEBUG -ggdb3 -O0 debug: CXXFLAGS += -DDEBUG -ggdb3 -O0 debug: all ... so "make debug" creates an executable where no variables are optim