From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:50101) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZIdlE-0006hw-2s for qemu-devel@nongnu.org; Fri, 24 Jul 2015 10:15:41 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZIdl9-0001n1-Vw for qemu-devel@nongnu.org; Fri, 24 Jul 2015 10:15:40 -0400 Received: from mx1.redhat.com ([209.132.183.28]:45767) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZIdl9-0001mq-Pj for qemu-devel@nongnu.org; Fri, 24 Jul 2015 10:15:35 -0400 References: <559D4011.1010302@redhat.com> <20150724125238.GA12473@redhat.com> <55B23556.2080302@redhat.com> <20150724131002.GM6880@redhat.com> <55B243EC.2060406@redhat.com> <20150724141449.GR6880@redhat.com> From: Paolo Bonzini Message-ID: <55B24883.3060406@redhat.com> Date: Fri, 24 Jul 2015 16:15:31 +0200 MIME-Version: 1.0 In-Reply-To: <20150724141449.GR6880@redhat.com> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PULL v3 00/12] Final changes for 2.4-rc0 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: "Daniel P. Berrange" Cc: Peter Maydell , QEMU Developers On 24/07/2015 16:14, Daniel P. Berrange wrote: >> > diff --git a/Makefile.objs b/Makefile.objs >> > index f094eff..9d988d9 100644 >> > --- a/Makefile.objs >> > +++ b/Makefile.objs >> > @@ -2,7 +2,9 @@ >> > # Common libraries for tools and emulators >> > stub-obj-y = stubs/ >> > util-obj-y = util/ qobject/ qapi/ qapi-types.o qapi-visit.o qapi-event.o >> > -util-obj-y += crypto/ >> > + >> > +util-obj-$(call notempty,$(TOOLS)) += crypto/ >> > +util-obj-$(CONFIG_SOFTMMU) += crypto/ > I have a feeling that'd cause the test suite to fail to link, > because it expects it to be unconditionally present in the > libqemuutil.a lib. Right... We need to introduce CONFIG_CRYPTO and use it in tests/Makefile too. Paolo