From d2c7c9b8716c2aa62ff0afdec2c76e67dab277f0 Mon Sep 17 00:00:00 2001 From: blueswir1 Date: Sat, 1 Nov 2008 14:50:20 +0000 Subject: [PATCH] Avoid ld flag --warn-common on Solaris git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5594 c046a42c-6fe2-441c-8c8c-71466251a162 --- configure | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/configure b/configure index ccc4ae0c4f..8b0ad89b12 100755 --- a/configure +++ b/configure @@ -98,6 +98,7 @@ oss_lib="" vnc_tls="yes" bsd="no" linux="no" +solaris="no" kqemu="no" profiler="no" cocoa="no" @@ -368,8 +369,10 @@ if test "$werror" = "yes" ; then CFLAGS="$CFLAGS -Werror" fi -if ld --version 2>/dev/null | grep -q "GNU ld" ; then - LDFLAGS="$LDFLAGS -Wl,--warn-common" +if test "$solaris" = "no" ; then + if ld --version 2>/dev/null | grep "GNU ld" >/dev/null 2>/dev/null ; then + LDFLAGS="$LDFLAGS -Wl,--warn-common" + fi fi #