correct some includes at plugins
Commit Message
Hi,
Plugins should use
#include <vdr/...>
and not
#include "vdr/..."
Regards,
Lars.
Comments
Hi,
Am 20.10.2012 15:03, schrieb Lars Hanisch:
> Plugins should use
>
> #include <vdr/...>
>
> and not
>
> #include "vdr/..."
Any reason, this didn't get into 1.7.32?
Is it wrong or was it just missed? ;)
It would help packaging plugins which needs headers of the dvb?ddevice-plugins.
Here's a link to the patch:
http://patchwork.linuxtv.org/patch/15069/
Regards,
Lars.
On 19.11.2012 00:03, Lars Hanisch wrote:
> Hi,
>
> Am 20.10.2012 15:03, schrieb Lars Hanisch:
>> Plugins should use
>>
>> #include <vdr/...>
>>
>> and not
>>
>> #include "vdr/..."
>
> Any reason, this didn't get into 1.7.32?
> Is it wrong or was it just missed? ;)
It's not wrong and it wasn't missed, either ;-)
It's just somewhat further down the TODO list, and I wanted to
have the new cutting code finally available for others to test
and maybe debug.
Klaus
Am 19.11.2012 00:20, schrieb Klaus Schmidinger:
> On 19.11.2012 00:03, Lars Hanisch wrote:
>> Hi,
>>
>> Am 20.10.2012 15:03, schrieb Lars Hanisch:
>>> Plugins should use
>>>
>>> #include <vdr/...>
>>>
>>> and not
>>>
>>> #include "vdr/..."
>>
>> Any reason, this didn't get into 1.7.32?
>> Is it wrong or was it just missed? ;)
>
> It's not wrong and it wasn't missed, either ;-)
> It's just somewhat further down the TODO list, and I wanted to
> have the new cutting code finally available for others to test
> and maybe debug.
Ok, I'm fine with it. :)
Lars.
>
> Klaus
>
> _______________________________________________
> vdr mailing list
> vdr@linuxtv.org
> http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr
>
@@ -10,8 +10,8 @@
#define __DVBHDFFDEVICE_H
#include "hdffcmd.h"
-#include "vdr/dvbdevice.h"
-#include "vdr/dvbspu.h"
+#include <vdr/dvbdevice.h>
+#include <vdr/dvbspu.h>
/// The cDvbHdFfDevice implements a DVB device which can be accessed through the Linux DVB driver API.
@@ -9,8 +9,8 @@
#ifndef __DVBSDFFDEVICE_H
#define __DVBSDFFDEVICE_H
-#include "vdr/dvbdevice.h"
-#include "vdr/dvbspu.h"
+#include <vdr/dvbdevice.h>
+#include <vdr/dvbspu.h>
/// The cDvbSdFfDevice implements a DVB device which can be accessed through the Linux DVB driver API.
@@ -9,7 +9,7 @@
#ifndef __DVBSDFFODF_H
#define __DVBSDFFODF_H
-#include "vdr/osd.h"
+#include <vdr/osd.h>
class cDvbOsdProvider : public cOsdProvider {
private: