[PATCH libdrm] configure: Add flag to disable valgrind support.

Matt Turner mattst88 at gmail.com
Mon Jun 22 10:38:19 PDT 2015


On Mon, Jun 22, 2015 at 10:07 AM, Emil Velikov <emil.l.velikov at gmail.com> wrote:
> On 22 June 2015 at 16:56, Matt Turner <mattst88 at gmail.com> wrote:
>> ---
>>  configure.ac | 10 +++++++++-
>>  1 file changed, 9 insertions(+), 1 deletion(-)
>>
>> diff --git a/configure.ac b/configure.ac
>> index 78a0010..dd6c0ab 100644
>> --- a/configure.ac
>> +++ b/configure.ac
>> @@ -403,7 +403,15 @@ else
>>  fi
>>  AM_CONDITIONAL([HAVE_MANPAGES_STYLESHEET], [test "x$HAVE_MANPAGES_STYLESHEET" = "xyes"])
>>
>> -PKG_CHECK_MODULES(VALGRIND, [valgrind], [have_valgrind=yes], [have_valgrind=no])
>> +AC_ARG_ENABLE(valgrind,
>> +              AS_HELP_STRING([--disable-valgrind],
>> +                             [Disable valgrind support]),
>> +                             [use_valgrind=$enableval], [use_valgrind=yes])
>> +
>> +if test "x$use_valgrind" = "xyes"; then
>> +       PKG_CHECK_MODULES(VALGRIND, [valgrind], [have_valgrind=yes], [have_valgrind=no])
>> +fi
>> +
> Any objections if we move this to "auto" rather than enabled by
> default (like we do with cairo) ? If you're ok I'll amend the patch
> before pushing.
>
> -Emil

Fine by me!

Thanks Emil.


More information about the dri-devel mailing list