Re: [Mesa-dev] [PATCH] configure: Avoid use of AC_CHECK_FILE for cross compiling

2013-07-12 Thread Tom Stellard
Hi Jonathan, Sorry for the delay. I've pushed this patch, thanks! -Tom On Wed, Jul 03, 2013 at 11:05:43AM +1000, Jonathan Liu wrote: > Bump. > > On 4 June 2013 23:04, Jonathan Liu wrote: > > The AC_CHECK_FILE macro can't be used for cross compiling as it will > > result in "error: cannot chec

Re: [Mesa-dev] [PATCH] configure: Avoid use of AC_CHECK_FILE for cross compiling

2013-07-02 Thread Jonathan Liu
Bump. On 4 June 2013 23:04, Jonathan Liu wrote: > The AC_CHECK_FILE macro can't be used for cross compiling as it will > result in "error: cannot check for file existence when cross compiling". > Replace it with the AS_IF macro. > > Signed-off-by: Jonathan Liu > --- > configure.ac | 12 ++--

[Mesa-dev] [PATCH] configure: Avoid use of AC_CHECK_FILE for cross compiling

2013-06-04 Thread Jonathan Liu
The AC_CHECK_FILE macro can't be used for cross compiling as it will result in "error: cannot check for file existence when cross compiling". Replace it with the AS_IF macro. Signed-off-by: Jonathan Liu --- configure.ac | 12 ++-- 1 file changed, 6 insertions(+), 6 deletions(-) diff --g