From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:47757) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hHFoZ-0002co-AE for qemu-devel@nongnu.org; Thu, 18 Apr 2019 18:47:32 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hHFoW-0002y0-AV for qemu-devel@nongnu.org; Thu, 18 Apr 2019 18:47:30 -0400 Received: from mail-it1-x141.google.com ([2607:f8b0:4864:20::141]:37980) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hHFoT-0002qk-09 for qemu-devel@nongnu.org; Thu, 18 Apr 2019 18:47:26 -0400 Received: by mail-it1-x141.google.com with SMTP id f22so5810815ita.3 for ; Thu, 18 Apr 2019 15:47:18 -0700 (PDT) From: John Arbuckle Date: Thu, 18 Apr 2019 18:47:06 -0400 Message-Id: <20190418224706.14014-1-programmingkidx@gmail.com> Subject: [Qemu-devel] [PATCH] configure: Change capstone's default state to disabled List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: peter.maydell@linaro.org, qemu-devel@nongnu.org Cc: John Arbuckle Capstone is not necessary in order to use QEMU. Disable it by default. This will save the user the pain of having to figure why QEMU isn't building when this library is missing. Signed-off-by: John Arbuckle --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index 1c563a7027..77d7967f92 100755 --- a/configure +++ b/configure @@ -433,7 +433,7 @@ opengl_dmabuf="no" cpuid_h="no" avx2_opt="" zlib="yes" -capstone="" +capstone="no" lzo="" snappy="" bzip2="" -- 2.14.3 (Apple Git-98)