On 3 September 2011 07:07, Liu Aleaxander <aleaxan...@gmail.com> wrote:

> From f02de851ba728642e26cce6fe76e5482619813e7 Mon Sep 17 00:00:00 2001
> From: Yuanhan Liu <yuanhan....@linux.intel.com>
> Date: Sun, 4 Sep 2011 06:02:14 +0800
> Subject: [PATCH] intel: fix build error
>
> Fix a build error introduced by commit 6862b54f:
> i965_dri.so.tmp: undefined reference to `strerr'
>
> Signed-off-by: Yuanhan Liu <yuanhan....@linux.intel.com>
> ---
>  src/mesa/drivers/dri/intel/intel_batchbuffer.c |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/src/mesa/drivers/dri/intel/intel_batchbuffer.c
> b/src/mesa/drivers/dri/intel/intel_batchbuffer.c
> index c4bb836..98ae4e9 100644
> --- a/src/mesa/drivers/dri/intel/intel_batchbuffer.c
> +++ b/src/mesa/drivers/dri/intel/intel_batchbuffer.c
> @@ -138,7 +138,7 @@ do_flush_locked(struct intel_context *intel)
>    }
>
>    if (ret != 0) {
> -      fprintf(stderr, "intel_do_flush_locked failed: %s\n", strerr(ret));
> +      fprintf(stderr, "intel_do_flush_locked failed: %s\n",
> strerror(ret));
>       exit(1);
>    }
>    intel->vtbl.new_batch(intel);
> --
> 1.7.3.1
> _______________________________________________
> mesa-dev mailing list
> mesa-dev@lists.freedesktop.org
> http://lists.freedesktop.org/mailman/listinfo/mesa-dev
>

I was just about to start tracking down this failure.  Thanks.

Reviewed-by: Paul Berry <stereotype...@gmail.com>

I'm guessing you don't have commit access since I don't see your name in the
commit history, so I'll go ahead and push the patch.
_______________________________________________
mesa-dev mailing list
mesa-dev@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/mesa-dev

Reply via email to