From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:34267) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dqYc2-0006pC-MW for qemu-devel@nongnu.org; Sat, 09 Sep 2017 01:47:27 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dqYc1-0006sw-OD for qemu-devel@nongnu.org; Sat, 09 Sep 2017 01:47:26 -0400 Received: from mx1.redhat.com ([209.132.183.28]:16195) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1dqYc1-0006sK-I2 for qemu-devel@nongnu.org; Sat, 09 Sep 2017 01:47:25 -0400 From: Fam Zheng Date: Sat, 9 Sep 2017 13:46:12 +0800 Message-Id: <20170909054613.19148-37-famz@redhat.com> In-Reply-To: <20170909054613.19148-1-famz@redhat.com> References: <20170909054613.19148-1-famz@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Subject: [Qemu-devel] [PULL v2 36/37] buildsys: Move brlapi libs to per object List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Peter Maydell baum.o already receives the sdl cflags in its per object variable, do the same for brlapi libs to avoid cluttering libs_softmmu. Signed-off-by: Fam Zheng Message-Id: <20170907084700.952-1-famz@redhat.com> Reviewed-by: Philippe Mathieu-Daud=C3=A9 Reviewed-by: Marc-Andr=C3=A9 Lureau Signed-off-by: Fam Zheng --- chardev/Makefile.objs | 1 + configure | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/chardev/Makefile.objs b/chardev/Makefile.objs index 52a8127606..d68e1347f9 100644 --- a/chardev/Makefile.objs +++ b/chardev/Makefile.objs @@ -20,5 +20,6 @@ chardev-obj-$(CONFIG_WIN32) +=3D char-win-stdio.o common-obj-y +=3D msmouse.o wctablet.o testdev.o common-obj-$(CONFIG_BRLAPI) +=3D baum.o baum.o-cflags :=3D $(SDL_CFLAGS) +baum.o-libs :=3D $(BRLAPI_LIBS) =20 common-obj-$(CONFIG_SPICE) +=3D spice.o diff --git a/configure b/configure index 85ea2c25bb..18f6d0bd5f 100755 --- a/configure +++ b/configure @@ -3091,7 +3091,6 @@ int main( void ) { return brlapi__openConnection (N= ULL, NULL, NULL); } EOF if compile_prog "" "$brlapi_libs" ; then brlapi=3Dyes - libs_softmmu=3D"$brlapi_libs $libs_softmmu" else if test "$brlapi" =3D "yes" ; then feature_not_found "brlapi" "Install brlapi devel" @@ -5679,6 +5678,7 @@ if test "$curl" =3D "yes" ; then fi if test "$brlapi" =3D "yes" ; then echo "CONFIG_BRLAPI=3Dy" >> $config_host_mak + echo "BRLAPI_LIBS=3D$brlapi_libs" >> $config_host_mak fi if test "$bluez" =3D "yes" ; then echo "CONFIG_BLUEZ=3Dy" >> $config_host_mak --=20 2.13.5