From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MWL5z-0007MN-B9 for qemu-devel@nongnu.org; Wed, 29 Jul 2009 22:10:15 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MWL5u-0007Fg-OK for qemu-devel@nongnu.org; Wed, 29 Jul 2009 22:10:14 -0400 Received: from [199.232.76.173] (port=47323 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MWL5u-0007FJ-89 for qemu-devel@nongnu.org; Wed, 29 Jul 2009 22:10:10 -0400 Received: from mx2.redhat.com ([66.187.237.31]:50825) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MWL5t-00058v-NQ for qemu-devel@nongnu.org; Wed, 29 Jul 2009 22:10:10 -0400 From: Juan Quintela Date: Thu, 30 Jul 2009 04:07:22 +0200 Message-Id: <4ec3d3a5e0f7ea5c1109dff25c53ab01a2a088b5.1248918837.git.quintela@redhat.com> In-Reply-To: References: In-Reply-To: References: Subject: [Qemu-devel] [PATCH 27/42] Move to configure CONFIG_SOLARIS libraries needed always List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: aliguori@us.ibm.com Signed-off-by: Juan Quintela --- Makefile | 4 ---- Makefile.target | 1 - configure | 1 + 3 files changed, 1 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 3c9b2bd..d662e48 100644 --- a/Makefile +++ b/Makefile @@ -27,10 +27,6 @@ else DOCS= endif -ifdef CONFIG_SOLARIS -LIBS+=-lsocket -lnsl -lresolv -endif - ifdef CONFIG_WIN32 LIBS+=-lwinmm -lws2_32 -liphlpapi endif diff --git a/Makefile.target b/Makefile.target index 5d05e71..b77c496 100644 --- a/Makefile.target +++ b/Makefile.target @@ -52,7 +52,6 @@ ifdef CONFIG_WIN32 LIBS+=-lwinmm -lws2_32 -liphlpapi endif ifdef CONFIG_SOLARIS -LIBS+=-lsocket -lnsl -lresolv ifdef CONFIG_NEEDS_LIBSUNMATH LIBS+=-lsunmath LDFLAGS+=-L/opt/SUNWspro/prod/lib -R/opt/SUNWspro/prod/lib diff --git a/configure b/configure index c0bd253..bf93f4d 100755 --- a/configure +++ b/configure @@ -321,6 +321,7 @@ SunOS) fi audio_possible_drivers="oss sdl" CFLAGS="-std=gnu99 $CFLAGS" + LIBS="-lsocket -lnsl -lresolv $LIBS" ;; AIX) aix="yes" -- 1.6.2.5