[Mesa-dev] [PATCH] winsys/svga/drm: Include sys/types.h

2017-08-17 Thread Khem Raj
vmw_screen.h uses dev_t which is defines in sys/types.h this header is required to be included for getting dev_t definition. This issue happens on musl C library, it is hidden on glibc since sys/types.h is included through another system headers Signed-off-by: Khem Raj ---

Re: [Mesa-dev] [PATCH] winsys/svga/drm: Include sys/types.h

2017-08-16 Thread Brian Paul
On 08/16/2017 08:11 PM, Khem Raj wrote: vmw_screen.h uses dev_t which is defines in sys/types.h this header is required to be included for getting dev_t definition. This issue happens on musl C library, it is hidden on glibc since sys/types.h is included through another system headers