On Mon, Oct 07, 2013 at 01:05:15PM +0200, Marek Olšák wrote: > From: Marek Olšák <[email protected]> >
Reviewed-by: Tom Stellard <[email protected]> > --- > configure.ac | 5 +++-- > 1 file changed, 3 insertions(+), 2 deletions(-) > > diff --git a/configure.ac b/configure.ac > index 559c9a3..6158c6e 100644 > --- a/configure.ac > +++ b/configure.ac > @@ -1532,8 +1532,9 @@ AC_ARG_WITH([llvm-shared-libs], > [with_llvm_shared_libs=no]) > AS_IF([test x$enable_opencl = xyes], > [ > - AC_MSG_WARN([OpenCL required, forcing LLVM shared libraries]) > - with_llvm_shared_libs=yes > + if test "x$with_llvm_shared_libs" != xyes; then > + AC_MSG_ERROR([OpenCL requires LLVM shared libraries]) > + fi > ]) > > AC_ARG_WITH([llvm-prefix], > -- > 1.8.1.2 > > _______________________________________________ > mesa-dev mailing list > [email protected] > http://lists.freedesktop.org/mailman/listinfo/mesa-dev _______________________________________________ mesa-dev mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-dev
