[Mesa-dev] [PATCH] pipe-loader: Include unistd.h in pipe_loader_drm.c for close function.

Brian Paul brianp at vmware.com
Mon Sep 8 06:39:33 PDT 2014


On 09/06/2014 05:00 PM, Vinson Lee wrote:
> This patch fixes a build error on DragonFly.
>
>    CC       libpipe_loader_la-pipe_loader_drm.lo
> pipe_loader_drm.c: In function 'pipe_loader_drm_probe':
> pipe_loader_drm.c:207:10: error: implicit declaration of function 'close' [-Werror=implicit-function-declaration]
>
> Signed-off-by: Vinson Lee <vlee at freedesktop.org>
> ---
>   src/gallium/auxiliary/pipe-loader/pipe_loader_drm.c | 1 +
>   1 file changed, 1 insertion(+)
>
> diff --git a/src/gallium/auxiliary/pipe-loader/pipe_loader_drm.c b/src/gallium/auxiliary/pipe-loader/pipe_loader_drm.c
> index f531dbf..ffeb299 100644
> --- a/src/gallium/auxiliary/pipe-loader/pipe_loader_drm.c
> +++ b/src/gallium/auxiliary/pipe-loader/pipe_loader_drm.c
> @@ -33,6 +33,7 @@
>   #include <fcntl.h>
>   #include <stdio.h>
>   #include <xf86drm.h>
> +#include <unistd.h>
>
>   #ifdef HAVE_PIPE_LOADER_XCB
>
>

Reviewed-by: Brian Paul <brianp at vmware.com>

Does this need to be tagged for the 10.3 or 10.2 branches?

-Brian



More information about the mesa-dev mailing list