All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH libdrm] libdrm: Fix drm.h include in qxl drm header file
@ 2014-05-05 21:54 Andreas Boll
  2014-07-28 14:35 ` Andreas Boll
  0 siblings, 1 reply; 4+ messages in thread
From: Andreas Boll @ 2014-05-05 21:54 UTC (permalink / raw)
  To: dri-devel

Use "drm.h" instead of "drm/drm.h" as used in the other header files.
Fixes xserver-xorg-video-qxl build with KMS support on Debian, where this
file is installed in /usr/include/libdrm.

Fixes Debian bug #746807

Reported-by: Bastian Blank <waldi@debian.org>
Signed-off-by: Andreas Boll <andreas.boll.dev@gmail.com>
---
 include/drm/qxl_drm.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/drm/qxl_drm.h b/include/drm/qxl_drm.h
index 5d7de70..1e331a8 100644
--- a/include/drm/qxl_drm.h
+++ b/include/drm/qxl_drm.h
@@ -25,7 +25,7 @@
 #define QXL_DRM_H
 
 #include <stddef.h>
-#include "drm/drm.h"
+#include "drm.h"
 
 /* Please note that modifications to all structs defined here are
  * subject to backwards-compatibility constraints.
-- 
1.9.2

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH libdrm] libdrm: Fix drm.h include in qxl drm header file
  2014-05-05 21:54 [PATCH libdrm] libdrm: Fix drm.h include in qxl drm header file Andreas Boll
@ 2014-07-28 14:35 ` Andreas Boll
  2014-07-28 15:06   ` Emil Velikov
  0 siblings, 1 reply; 4+ messages in thread
From: Andreas Boll @ 2014-07-28 14:35 UTC (permalink / raw)
  To: dri-devel

ping

2014-05-05 23:54 GMT+02:00 Andreas Boll <andreas.boll.dev@gmail.com>:
> Use "drm.h" instead of "drm/drm.h" as used in the other header files.
> Fixes xserver-xorg-video-qxl build with KMS support on Debian, where this
> file is installed in /usr/include/libdrm.
>
> Fixes Debian bug #746807
>
> Reported-by: Bastian Blank <waldi@debian.org>
> Signed-off-by: Andreas Boll <andreas.boll.dev@gmail.com>
> ---
>  include/drm/qxl_drm.h | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/include/drm/qxl_drm.h b/include/drm/qxl_drm.h
> index 5d7de70..1e331a8 100644
> --- a/include/drm/qxl_drm.h
> +++ b/include/drm/qxl_drm.h
> @@ -25,7 +25,7 @@
>  #define QXL_DRM_H
>
>  #include <stddef.h>
> -#include "drm/drm.h"
> +#include "drm.h"
>
>  /* Please note that modifications to all structs defined here are
>   * subject to backwards-compatibility constraints.
> --
> 1.9.2
>

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH libdrm] libdrm: Fix drm.h include in qxl drm header file
  2014-07-28 14:35 ` Andreas Boll
@ 2014-07-28 15:06   ` Emil Velikov
  2014-07-28 15:37     ` Andreas Boll
  0 siblings, 1 reply; 4+ messages in thread
From: Emil Velikov @ 2014-07-28 15:06 UTC (permalink / raw)
  To: Andreas Boll, dri-devel; +Cc: emil.l.velikov

On 28/07/14 15:35, Andreas Boll wrote:
> ping
> 
> 2014-05-05 23:54 GMT+02:00 Andreas Boll <andreas.boll.dev@gmail.com>:
>> Use "drm.h" instead of "drm/drm.h" as used in the other header files.
>> Fixes xserver-xorg-video-qxl build with KMS support on Debian, where this
>> file is installed in /usr/include/libdrm.
>>
I believe that's the default location for most linux distributions. Seems like
not many of us build the qxl ddx :\

FWIW
Reviewed-by: Emil Velikov <emil.l.velikov@gmail.com>

>> Fixes Debian bug #746807
>>
>> Reported-by: Bastian Blank <waldi@debian.org>
>> Signed-off-by: Andreas Boll <andreas.boll.dev@gmail.com>
>> ---
>>  include/drm/qxl_drm.h | 2 +-
>>  1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/include/drm/qxl_drm.h b/include/drm/qxl_drm.h
>> index 5d7de70..1e331a8 100644
>> --- a/include/drm/qxl_drm.h
>> +++ b/include/drm/qxl_drm.h
>> @@ -25,7 +25,7 @@
>>  #define QXL_DRM_H
>>
>>  #include <stddef.h>
>> -#include "drm/drm.h"
>> +#include "drm.h"
>>
>>  /* Please note that modifications to all structs defined here are
>>   * subject to backwards-compatibility constraints.
>> --
>> 1.9.2
>>
> _______________________________________________
> dri-devel mailing list
> dri-devel@lists.freedesktop.org
> http://lists.freedesktop.org/mailman/listinfo/dri-devel
> 

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH libdrm] libdrm: Fix drm.h include in qxl drm header file
  2014-07-28 15:06   ` Emil Velikov
@ 2014-07-28 15:37     ` Andreas Boll
  0 siblings, 0 replies; 4+ messages in thread
From: Andreas Boll @ 2014-07-28 15:37 UTC (permalink / raw)
  To: Emil Velikov; +Cc: dri-devel

2014-07-28 17:06 GMT+02:00 Emil Velikov <emil.l.velikov@gmail.com>:
> On 28/07/14 15:35, Andreas Boll wrote:
>> ping
>>
>> 2014-05-05 23:54 GMT+02:00 Andreas Boll <andreas.boll.dev@gmail.com>:
>>> Use "drm.h" instead of "drm/drm.h" as used in the other header files.
>>> Fixes xserver-xorg-video-qxl build with KMS support on Debian, where this
>>> file is installed in /usr/include/libdrm.
>>>
> I believe that's the default location for most linux distributions. Seems like
> not many of us build the qxl ddx :\
>
> FWIW
> Reviewed-by: Emil Velikov <emil.l.velikov@gmail.com>
>

Thanks!
Pushed.

>>> Fixes Debian bug #746807
>>>
>>> Reported-by: Bastian Blank <waldi@debian.org>
>>> Signed-off-by: Andreas Boll <andreas.boll.dev@gmail.com>
>>> ---
>>>  include/drm/qxl_drm.h | 2 +-
>>>  1 file changed, 1 insertion(+), 1 deletion(-)
>>>
>>> diff --git a/include/drm/qxl_drm.h b/include/drm/qxl_drm.h
>>> index 5d7de70..1e331a8 100644
>>> --- a/include/drm/qxl_drm.h
>>> +++ b/include/drm/qxl_drm.h
>>> @@ -25,7 +25,7 @@
>>>  #define QXL_DRM_H
>>>
>>>  #include <stddef.h>
>>> -#include "drm/drm.h"
>>> +#include "drm.h"
>>>
>>>  /* Please note that modifications to all structs defined here are
>>>   * subject to backwards-compatibility constraints.
>>> --
>>> 1.9.2
>>>
>> _______________________________________________
>> dri-devel mailing list
>> dri-devel@lists.freedesktop.org
>> http://lists.freedesktop.org/mailman/listinfo/dri-devel
>>
>

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2014-07-28 15:37 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-05-05 21:54 [PATCH libdrm] libdrm: Fix drm.h include in qxl drm header file Andreas Boll
2014-07-28 14:35 ` Andreas Boll
2014-07-28 15:06   ` Emil Velikov
2014-07-28 15:37     ` Andreas Boll

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.