From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1521) id 11C933858417; Mon, 17 Jan 2022 09:41:57 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 11C933858417 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Michael Frysinger To: newlib-cvs@sourceware.org Subject: [newlib-cygwin] libgloss: clean up redundant shared lib warnings X-Act-Checkin: newlib-cygwin X-Git-Author: Mike Frysinger X-Git-Refname: refs/heads/master X-Git-Oldrev: 6cde47de67015ebe92b9a4fb6bbf74910fe26f05 X-Git-Newrev: 7c02fc3075d1929b95dfff7b427e72ca0313cc38 Message-Id: <20220117094157.11C933858417@sourceware.org> Date: Mon, 17 Jan 2022 09:41:57 +0000 (GMT) X-BeenThere: newlib-cvs@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Newlib GIT logs List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Jan 2022 09:41:57 -0000 https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=7c02fc3075d1929b95dfff7b427e72ca0313cc38 commit 7c02fc3075d1929b95dfff7b427e72ca0313cc38 Author: Mike Frysinger Date: Mon Jan 17 03:58:13 2022 -0500 libgloss: clean up redundant shared lib warnings Use standard AC_MSG_WARN macro in the top-level configure, and delete the message from all the subdirs. There's no need to issue this more than once per libgloss build. Diff: --- libgloss/arc/configure | 4 ---- libgloss/arc/configure.ac | 4 ---- libgloss/bfin/configure | 4 ---- libgloss/bfin/configure.ac | 4 ---- libgloss/configure | 3 ++- libgloss/configure.ac | 2 +- libgloss/cr16/configure | 4 ---- libgloss/cr16/configure.ac | 4 ---- libgloss/cris/configure | 4 ---- libgloss/cris/configure.ac | 4 ---- libgloss/csky/configure | 4 ---- libgloss/csky/configure.ac | 4 ---- libgloss/d30v/configure | 4 ---- libgloss/d30v/configure.ac | 4 ---- libgloss/doc/configure | 3 --- libgloss/epiphany/configure | 5 ----- libgloss/epiphany/configure.ac | 5 ----- libgloss/frv/configure | 4 ---- libgloss/frv/configure.ac | 4 ---- libgloss/ft32/configure | 4 ---- libgloss/ft32/configure.ac | 4 ---- libgloss/i386/configure | 4 ---- libgloss/i386/configure.ac | 4 ---- libgloss/iq2000/configure | 4 ---- libgloss/iq2000/configure.ac | 4 ---- libgloss/libnosys/configure | 4 ---- libgloss/libnosys/configure.ac | 4 ---- libgloss/lm32/configure | 4 ---- libgloss/lm32/configure.ac | 4 ---- libgloss/m32c/configure | 4 ---- libgloss/m32c/configure.ac | 4 ---- libgloss/m68hc11/configure | 4 ---- libgloss/m68hc11/configure.ac | 4 ---- libgloss/m68k/configure | 4 ---- libgloss/m68k/configure.ac | 4 ---- libgloss/mcore/configure | 4 ---- libgloss/mcore/configure.ac | 4 ---- libgloss/mep/configure | 4 ---- libgloss/mep/configure.ac | 4 ---- libgloss/microblaze/configure | 4 ---- libgloss/microblaze/configure.ac | 4 ---- libgloss/mips/configure | 4 ---- libgloss/mips/configure.ac | 4 ---- libgloss/mn10200/configure | 4 ---- libgloss/mn10200/configure.ac | 4 ---- libgloss/mn10300/configure | 4 ---- libgloss/mn10300/configure.ac | 4 ---- libgloss/moxie/configure | 4 ---- libgloss/moxie/configure.ac | 4 ---- libgloss/msp430/configure | 4 ---- libgloss/msp430/configure.ac | 4 ---- libgloss/mt/configure | 4 ---- libgloss/mt/configure.ac | 4 ---- libgloss/nios2/configure | 4 ---- libgloss/nios2/configure.ac | 4 ---- libgloss/or1k/configure | 5 ----- libgloss/or1k/configure.ac | 5 ----- libgloss/pa/configure | 4 ---- libgloss/pa/configure.ac | 4 ---- libgloss/pru/configure | 4 ---- libgloss/pru/configure.ac | 4 ---- libgloss/rl78/configure | 4 ---- libgloss/rl78/configure.ac | 4 ---- libgloss/rs6000/configure | 4 ---- libgloss/rs6000/configure.ac | 4 ---- libgloss/rx/configure | 4 ---- libgloss/rx/configure.ac | 4 ---- libgloss/sparc/configure | 4 ---- libgloss/sparc/configure.ac | 4 ---- libgloss/sparc_leon/configure | 4 ---- libgloss/sparc_leon/configure.ac | 4 ---- libgloss/tic6x/configure | 4 ---- libgloss/tic6x/configure.ac | 4 ---- libgloss/v850/configure | 4 ---- libgloss/v850/configure.ac | 4 ---- libgloss/visium/configure | 4 ---- libgloss/visium/configure.ac | 4 ---- libgloss/xc16x/configure | 4 ---- libgloss/xc16x/configure.ac | 4 ---- 79 files changed, 3 insertions(+), 313 deletions(-) diff --git a/libgloss/arc/configure b/libgloss/arc/configure index 8112a4c62..ec63830ab 100755 --- a/libgloss/arc/configure +++ b/libgloss/arc/configure @@ -1765,10 +1765,6 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu -if test "${enable_shared}" = "yes" ; then - echo "Shared libraries not supported for cross compiling, ignored" -fi - ac_aux_dir= for ac_dir in ../.. "$srcdir"/../..; do if test -f "$ac_dir/install-sh"; then diff --git a/libgloss/arc/configure.ac b/libgloss/arc/configure.ac index b5ebe95db..d00cb8d4e 100644 --- a/libgloss/arc/configure.ac +++ b/libgloss/arc/configure.ac @@ -1,10 +1,6 @@ dnl Process this file with autoconf to produce a configure script. AC_INIT(crt0.S) -if test "${enable_shared}" = "yes" ; then - echo "Shared libraries not supported for cross compiling, ignored" -fi - AC_CONFIG_AUX_DIR(../..) AC_CANONICAL_SYSTEM diff --git a/libgloss/bfin/configure b/libgloss/bfin/configure index 3b431624a..00a23ad06 100755 --- a/libgloss/bfin/configure +++ b/libgloss/bfin/configure @@ -1765,10 +1765,6 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu -if test "${enable_shared}" = "yes" ; then - echo "Shared libraries not supported for cross compiling, ignored" -fi - ac_aux_dir= for ac_dir in ../.. "$srcdir"/../..; do if test -f "$ac_dir/install-sh"; then diff --git a/libgloss/bfin/configure.ac b/libgloss/bfin/configure.ac index 5ea95f492..875578026 100644 --- a/libgloss/bfin/configure.ac +++ b/libgloss/bfin/configure.ac @@ -1,10 +1,6 @@ dnl Process this file with autoconf to produce a configure script. AC_INIT(crt0.S) -if test "${enable_shared}" = "yes" ; then - echo "Shared libraries not supported for cross compiling, ignored" -fi - AC_CONFIG_AUX_DIR(../..) AC_CANONICAL_SYSTEM diff --git a/libgloss/configure b/libgloss/configure index a6bd28bde..eb575b237 100755 --- a/libgloss/configure +++ b/libgloss/configure @@ -1846,7 +1846,8 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu if test "${enable_shared}" = "yes" ; then - echo "Shared libraries not supported for cross compiling, ignored" + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Shared libraries not supported for cross compiling, ignored" >&5 +$as_echo "$as_me: WARNING: Shared libraries not supported for cross compiling, ignored" >&2;} fi ac_aux_dir= diff --git a/libgloss/configure.ac b/libgloss/configure.ac index 6af1a2302..9cbbf58cc 100644 --- a/libgloss/configure.ac +++ b/libgloss/configure.ac @@ -3,7 +3,7 @@ AC_INIT([libgloss],[LIBGLOSS_VERSION]) AC_CONFIG_SRCDIR([libnosys]) if test "${enable_shared}" = "yes" ; then - echo "Shared libraries not supported for cross compiling, ignored" + AC_MSG_WARN([Shared libraries not supported for cross compiling, ignored]) fi AC_CONFIG_AUX_DIR(..) diff --git a/libgloss/cr16/configure b/libgloss/cr16/configure index 52b1bb799..1715aac35 100755 --- a/libgloss/cr16/configure +++ b/libgloss/cr16/configure @@ -1765,10 +1765,6 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu -if test "${enable_shared}" = "yes" ; then - echo "Shared libraries not supported for cross compiling, ignored" -fi - ac_aux_dir= for ac_dir in ../.. "$srcdir"/../..; do if test -f "$ac_dir/install-sh"; then diff --git a/libgloss/cr16/configure.ac b/libgloss/cr16/configure.ac index 29116e470..b8b1ddf3f 100644 --- a/libgloss/cr16/configure.ac +++ b/libgloss/cr16/configure.ac @@ -1,10 +1,6 @@ dnl Process this file with autoconf to produce a configure script. AC_INIT(crt1.S) -if test "${enable_shared}" = "yes" ; then - echo "Shared libraries not supported for cross compiling, ignored" -fi - AC_CONFIG_AUX_DIR(../..) AC_CANONICAL_SYSTEM diff --git a/libgloss/cris/configure b/libgloss/cris/configure index 5f5cbf1bb..d1c11d8a1 100755 --- a/libgloss/cris/configure +++ b/libgloss/cris/configure @@ -1765,10 +1765,6 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu -if test "${enable_shared}" = "yes" ; then - echo "Shared libraries not supported for cross compiling, ignored" -fi - ac_aux_dir= for ac_dir in ../.. "$srcdir"/../..; do if test -f "$ac_dir/install-sh"; then diff --git a/libgloss/cris/configure.ac b/libgloss/cris/configure.ac index ec7945e2e..7aac2c62a 100644 --- a/libgloss/cris/configure.ac +++ b/libgloss/cris/configure.ac @@ -2,10 +2,6 @@ dnl This file is based on ../mcore/configure.in dnl Process this file with autoconf to produce a configure script. AC_INIT(Makefile.in) -if test "${enable_shared}" = "yes" ; then - echo "Shared libraries not supported for cross compiling, ignored" -fi - AC_CONFIG_AUX_DIR(../..) AC_CANONICAL_SYSTEM diff --git a/libgloss/csky/configure b/libgloss/csky/configure index 2b2f8e907..672876a35 100755 --- a/libgloss/csky/configure +++ b/libgloss/csky/configure @@ -1826,10 +1826,6 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu -if test "${enable_shared}" = "yes" ; then - echo "Shared libraries not supported for cross compiling, ignored" -fi - ac_aux_dir= for ac_dir in ../.. "$srcdir"/../..; do if test -f "$ac_dir/install-sh"; then diff --git a/libgloss/csky/configure.ac b/libgloss/csky/configure.ac index dd8c59530..0387ea46b 100644 --- a/libgloss/csky/configure.ac +++ b/libgloss/csky/configure.ac @@ -13,10 +13,6 @@ # process this file with autoconf to produce a configure script. AC_INIT(crt0.S) -if test "${enable_shared}" = "yes" ; then - echo "Shared libraries not supported for cross compiling, ignored" -fi - AC_CONFIG_AUX_DIR(../..) AC_CANONICAL_SYSTEM AC_ARG_PROGRAM diff --git a/libgloss/d30v/configure b/libgloss/d30v/configure index 8112a4c62..ec63830ab 100755 --- a/libgloss/d30v/configure +++ b/libgloss/d30v/configure @@ -1765,10 +1765,6 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu -if test "${enable_shared}" = "yes" ; then - echo "Shared libraries not supported for cross compiling, ignored" -fi - ac_aux_dir= for ac_dir in ../.. "$srcdir"/../..; do if test -f "$ac_dir/install-sh"; then diff --git a/libgloss/d30v/configure.ac b/libgloss/d30v/configure.ac index b5ebe95db..d00cb8d4e 100644 --- a/libgloss/d30v/configure.ac +++ b/libgloss/d30v/configure.ac @@ -1,10 +1,6 @@ dnl Process this file with autoconf to produce a configure script. AC_INIT(crt0.S) -if test "${enable_shared}" = "yes" ; then - echo "Shared libraries not supported for cross compiling, ignored" -fi - AC_CONFIG_AUX_DIR(../..) AC_CANONICAL_SYSTEM diff --git a/libgloss/doc/configure b/libgloss/doc/configure index d0605aabb..098220b69 100755 --- a/libgloss/doc/configure +++ b/libgloss/doc/configure @@ -1664,9 +1664,6 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu - - - ac_aux_dir= for ac_dir in ../.. "$srcdir"/../..; do if test -f "$ac_dir/install-sh"; then diff --git a/libgloss/epiphany/configure b/libgloss/epiphany/configure index e7f405b4f..54b0969ac 100755 --- a/libgloss/epiphany/configure +++ b/libgloss/epiphany/configure @@ -1768,11 +1768,6 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu ac_config_headers="$ac_config_headers config.h" -# No shared libraries allowed -if test "${enable_shared}" = "yes" ; then - echo "Shared libraries not supported for cross compiling, ignored" -fi - ac_aux_dir= for ac_dir in ../.. "$srcdir"/../..; do if test -f "$ac_dir/install-sh"; then diff --git a/libgloss/epiphany/configure.ac b/libgloss/epiphany/configure.ac index d1b5518b4..4ed915e71 100644 --- a/libgloss/epiphany/configure.ac +++ b/libgloss/epiphany/configure.ac @@ -33,11 +33,6 @@ AC_INIT(libepiphany,0.0.1) AC_CONFIG_HEADER(config.h) -# No shared libraries allowed -if test "${enable_shared}" = "yes" ; then - echo "Shared libraries not supported for cross compiling, ignored" -fi - AC_CONFIG_AUX_DIR(../..) AC_CANONICAL_SYSTEM diff --git a/libgloss/frv/configure b/libgloss/frv/configure index 8112a4c62..ec63830ab 100755 --- a/libgloss/frv/configure +++ b/libgloss/frv/configure @@ -1765,10 +1765,6 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu -if test "${enable_shared}" = "yes" ; then - echo "Shared libraries not supported for cross compiling, ignored" -fi - ac_aux_dir= for ac_dir in ../.. "$srcdir"/../..; do if test -f "$ac_dir/install-sh"; then diff --git a/libgloss/frv/configure.ac b/libgloss/frv/configure.ac index b5ebe95db..d00cb8d4e 100644 --- a/libgloss/frv/configure.ac +++ b/libgloss/frv/configure.ac @@ -1,10 +1,6 @@ dnl Process this file with autoconf to produce a configure script. AC_INIT(crt0.S) -if test "${enable_shared}" = "yes" ; then - echo "Shared libraries not supported for cross compiling, ignored" -fi - AC_CONFIG_AUX_DIR(../..) AC_CANONICAL_SYSTEM diff --git a/libgloss/ft32/configure b/libgloss/ft32/configure index 8112a4c62..ec63830ab 100755 --- a/libgloss/ft32/configure +++ b/libgloss/ft32/configure @@ -1765,10 +1765,6 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu -if test "${enable_shared}" = "yes" ; then - echo "Shared libraries not supported for cross compiling, ignored" -fi - ac_aux_dir= for ac_dir in ../.. "$srcdir"/../..; do if test -f "$ac_dir/install-sh"; then diff --git a/libgloss/ft32/configure.ac b/libgloss/ft32/configure.ac index b5ebe95db..d00cb8d4e 100644 --- a/libgloss/ft32/configure.ac +++ b/libgloss/ft32/configure.ac @@ -1,10 +1,6 @@ dnl Process this file with autoconf to produce a configure script. AC_INIT(crt0.S) -if test "${enable_shared}" = "yes" ; then - echo "Shared libraries not supported for cross compiling, ignored" -fi - AC_CONFIG_AUX_DIR(../..) AC_CANONICAL_SYSTEM diff --git a/libgloss/i386/configure b/libgloss/i386/configure index caf6eff1a..81026b7de 100755 --- a/libgloss/i386/configure +++ b/libgloss/i386/configure @@ -1768,10 +1768,6 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu -if test "${enable_shared}" = "yes" ; then - echo "Shared libraries not supported for cross compiling, ignored" -fi - ac_aux_dir= for ac_dir in ../.. "$srcdir"/../..; do if test -f "$ac_dir/install-sh"; then diff --git a/libgloss/i386/configure.ac b/libgloss/i386/configure.ac index 1beeeddd3..895e4476e 100644 --- a/libgloss/i386/configure.ac +++ b/libgloss/i386/configure.ac @@ -14,10 +14,6 @@ # AC_INIT(cygmon-salib.c) -if test "${enable_shared}" = "yes" ; then - echo "Shared libraries not supported for cross compiling, ignored" -fi - AC_CONFIG_AUX_DIR(../..) AC_CANONICAL_SYSTEM diff --git a/libgloss/iq2000/configure b/libgloss/iq2000/configure index 74607aa32..b46846f30 100755 --- a/libgloss/iq2000/configure +++ b/libgloss/iq2000/configure @@ -1769,10 +1769,6 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu -if test "${enable_shared}" = "yes" ; then - echo "Shared libraries not supported for cross compiling, ignored" -fi - ac_aux_dir= for ac_dir in ../.. "$srcdir"/../..; do if test -f "$ac_dir/install-sh"; then diff --git a/libgloss/iq2000/configure.ac b/libgloss/iq2000/configure.ac index 93f874e36..d065a3e0a 100644 --- a/libgloss/iq2000/configure.ac +++ b/libgloss/iq2000/configure.ac @@ -14,10 +14,6 @@ # AC_INIT(crt0.S) -if test "${enable_shared}" = "yes" ; then - echo "Shared libraries not supported for cross compiling, ignored" -fi - AC_CONFIG_AUX_DIR(../..) AC_CANONICAL_SYSTEM diff --git a/libgloss/libnosys/configure b/libgloss/libnosys/configure index 9fb5e2b43..72c65a68c 100755 --- a/libgloss/libnosys/configure +++ b/libgloss/libnosys/configure @@ -1767,10 +1767,6 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu ac_config_headers="$ac_config_headers config.h" -if test "${enable_shared}" = "yes" ; then - echo "Shared libraries not supported for cross compiling, ignored" -fi - ac_aux_dir= for ac_dir in ../.. "$srcdir"/../..; do if test -f "$ac_dir/install-sh"; then diff --git a/libgloss/libnosys/configure.ac b/libgloss/libnosys/configure.ac index 31e9e72a6..f428616d7 100644 --- a/libgloss/libnosys/configure.ac +++ b/libgloss/libnosys/configure.ac @@ -15,10 +15,6 @@ AC_INIT(close.c) AC_CONFIG_HEADER(config.h) -if test "${enable_shared}" = "yes" ; then - echo "Shared libraries not supported for cross compiling, ignored" -fi - AC_CONFIG_AUX_DIR(../..) AC_CANONICAL_SYSTEM diff --git a/libgloss/lm32/configure b/libgloss/lm32/configure index 1a727b39c..943a0dd51 100755 --- a/libgloss/lm32/configure +++ b/libgloss/lm32/configure @@ -1765,10 +1765,6 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu -if test "${enable_shared}" = "yes" ; then - echo "Shared libraries not supported for cross compiling, ignored" -fi - ac_aux_dir= for ac_dir in ../.. "$srcdir"/../..; do if test -f "$ac_dir/install-sh"; then diff --git a/libgloss/lm32/configure.ac b/libgloss/lm32/configure.ac index 4b9f1dd8d..41c3d8bd0 100644 --- a/libgloss/lm32/configure.ac +++ b/libgloss/lm32/configure.ac @@ -1,10 +1,6 @@ dnl Process this file with autoconf to produce a configure script. AC_INIT(crt0.S) -if test "${enable_shared}" = "yes" ; then - echo "Shared libraries not supported for cross compiling, ignored" -fi - AC_CONFIG_AUX_DIR(../..) AC_CANONICAL_SYSTEM diff --git a/libgloss/m32c/configure b/libgloss/m32c/configure index 8112a4c62..ec63830ab 100755 --- a/libgloss/m32c/configure +++ b/libgloss/m32c/configure @@ -1765,10 +1765,6 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu -if test "${enable_shared}" = "yes" ; then - echo "Shared libraries not supported for cross compiling, ignored" -fi - ac_aux_dir= for ac_dir in ../.. "$srcdir"/../..; do if test -f "$ac_dir/install-sh"; then diff --git a/libgloss/m32c/configure.ac b/libgloss/m32c/configure.ac index b5ebe95db..d00cb8d4e 100644 --- a/libgloss/m32c/configure.ac +++ b/libgloss/m32c/configure.ac @@ -1,10 +1,6 @@ dnl Process this file with autoconf to produce a configure script. AC_INIT(crt0.S) -if test "${enable_shared}" = "yes" ; then - echo "Shared libraries not supported for cross compiling, ignored" -fi - AC_CONFIG_AUX_DIR(../..) AC_CANONICAL_SYSTEM diff --git a/libgloss/m68hc11/configure b/libgloss/m68hc11/configure index 8e297347e..27156d216 100755 --- a/libgloss/m68hc11/configure +++ b/libgloss/m68hc11/configure @@ -1765,10 +1765,6 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu -if test "${enable_shared}" = "yes" ; then - echo "Shared libraries not supported for cross compiling, ignored" -fi - ac_aux_dir= for ac_dir in ../.. "$srcdir"/../..; do if test -f "$ac_dir/install-sh"; then diff --git a/libgloss/m68hc11/configure.ac b/libgloss/m68hc11/configure.ac index 3ac4d6d05..2da7977f4 100644 --- a/libgloss/m68hc11/configure.ac +++ b/libgloss/m68hc11/configure.ac @@ -1,10 +1,6 @@ dnl Process this file with autoconf to produce a configure script. AC_INIT(sci-inout.S) -if test "${enable_shared}" = "yes" ; then - echo "Shared libraries not supported for cross compiling, ignored" -fi - AC_CONFIG_AUX_DIR(../..) AC_CANONICAL_SYSTEM diff --git a/libgloss/m68k/configure b/libgloss/m68k/configure index ad5920906..2b3e5682c 100755 --- a/libgloss/m68k/configure +++ b/libgloss/m68k/configure @@ -1826,10 +1826,6 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu -if test "${enable_shared}" = "yes" ; then - echo "Shared libraries not supported for cross compiling, ignored" -fi - ac_aux_dir= for ac_dir in ../.. "$srcdir"/../..; do if test -f "$ac_dir/install-sh"; then diff --git a/libgloss/m68k/configure.ac b/libgloss/m68k/configure.ac index 77b063b2f..53615ffc6 100644 --- a/libgloss/m68k/configure.ac +++ b/libgloss/m68k/configure.ac @@ -13,10 +13,6 @@ # process this file with autoconf to produce a configure script. AC_INIT(crt0.S) -if test "${enable_shared}" = "yes" ; then - echo "Shared libraries not supported for cross compiling, ignored" -fi - AC_CONFIG_AUX_DIR(../..) AC_CANONICAL_SYSTEM AC_ARG_PROGRAM diff --git a/libgloss/mcore/configure b/libgloss/mcore/configure index 4c10afa51..62f9f6926 100755 --- a/libgloss/mcore/configure +++ b/libgloss/mcore/configure @@ -1766,10 +1766,6 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu -if test "${enable_shared}" = "yes" ; then - echo "Shared libraries not supported for cross compiling, ignored" -fi - ac_aux_dir= for ac_dir in ../.. "$srcdir"/../..; do if test -f "$ac_dir/install-sh"; then diff --git a/libgloss/mcore/configure.ac b/libgloss/mcore/configure.ac index eeec395e4..a314d4ee3 100644 --- a/libgloss/mcore/configure.ac +++ b/libgloss/mcore/configure.ac @@ -1,10 +1,6 @@ dnl Process this file with autoconf to produce a configure script. AC_INIT(crt0.S) -if test "${enable_shared}" = "yes" ; then - echo "Shared libraries not supported for cross compiling, ignored" -fi - AC_CONFIG_AUX_DIR(../..) AC_CANONICAL_SYSTEM diff --git a/libgloss/mep/configure b/libgloss/mep/configure index b3499f2c1..31bbd1bc3 100755 --- a/libgloss/mep/configure +++ b/libgloss/mep/configure @@ -1754,10 +1754,6 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu -if test "${enable_shared}" = "yes" ; then - echo "Shared libraries not supported for cross compiling, ignored" -fi - ac_aux_dir= for ac_dir in ../.. "$srcdir"/../..; do if test -f "$ac_dir/install-sh"; then diff --git a/libgloss/mep/configure.ac b/libgloss/mep/configure.ac index f26d75ec9..7358e0e2c 100644 --- a/libgloss/mep/configure.ac +++ b/libgloss/mep/configure.ac @@ -14,10 +14,6 @@ dnl of Red Hat, Inc. dnl Process this file with autoconf to produce a configure script. AC_INIT(crt0.S) -if test "${enable_shared}" = "yes" ; then - echo "Shared libraries not supported for cross compiling, ignored" -fi - AC_CONFIG_AUX_DIR(../..) AC_CANONICAL_SYSTEM diff --git a/libgloss/microblaze/configure b/libgloss/microblaze/configure index 9e66da9d8..ed37d1267 100755 --- a/libgloss/microblaze/configure +++ b/libgloss/microblaze/configure @@ -1768,10 +1768,6 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu -if test "${enable_shared}" = "yes" ; then - echo "Shared libraries not supported for cross compiling, ignored" -fi - ac_aux_dir= for ac_dir in ../.. "$srcdir"/../..; do if test -f "$ac_dir/install-sh"; then diff --git a/libgloss/microblaze/configure.ac b/libgloss/microblaze/configure.ac index e013d63d1..97771fc76 100644 --- a/libgloss/microblaze/configure.ac +++ b/libgloss/microblaze/configure.ac @@ -1,10 +1,6 @@ dnl Process this file with autoconf to produce a configure script. AC_INIT(crt0.S) -if test "${enable_shared}" = "yes" ; then - echo "Shared libraries not supported for cross compiling, ignored" -fi - AC_CONFIG_AUX_DIR(../..) AC_CANONICAL_SYSTEM diff --git a/libgloss/mips/configure b/libgloss/mips/configure index ff87d7cf2..2026f0aef 100755 --- a/libgloss/mips/configure +++ b/libgloss/mips/configure @@ -1773,10 +1773,6 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu -if test "${enable_shared}" = "yes" ; then - echo "Shared libraries not supported for cross compiling, ignored" -fi - ac_aux_dir= for ac_dir in ../.. "$srcdir"/../..; do if test -f "$ac_dir/install-sh"; then diff --git a/libgloss/mips/configure.ac b/libgloss/mips/configure.ac index b97914b59..a609233a6 100644 --- a/libgloss/mips/configure.ac +++ b/libgloss/mips/configure.ac @@ -14,10 +14,6 @@ # AC_INIT(crt0.S) -if test "${enable_shared}" = "yes" ; then - echo "Shared libraries not supported for cross compiling, ignored" -fi - AC_CONFIG_AUX_DIR(../..) AC_CANONICAL_SYSTEM diff --git a/libgloss/mn10200/configure b/libgloss/mn10200/configure index e952d3eba..728c774fe 100755 --- a/libgloss/mn10200/configure +++ b/libgloss/mn10200/configure @@ -1768,10 +1768,6 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu -if test "${enable_shared}" = "yes" ; then - echo "Shared libraries not supported for cross compiling, ignored" -fi - ac_aux_dir= for ac_dir in ../.. "$srcdir"/../..; do if test -f "$ac_dir/install-sh"; then diff --git a/libgloss/mn10200/configure.ac b/libgloss/mn10200/configure.ac index 26fc96e28..70dbd49d9 100644 --- a/libgloss/mn10200/configure.ac +++ b/libgloss/mn10200/configure.ac @@ -14,10 +14,6 @@ # AC_INIT(crt0.S) -if test "${enable_shared}" = "yes" ; then - echo "Shared libraries not supported for cross compiling, ignored" -fi - AC_CONFIG_AUX_DIR(../..) AC_CANONICAL_SYSTEM diff --git a/libgloss/mn10300/configure b/libgloss/mn10300/configure index 27a028a12..971885587 100755 --- a/libgloss/mn10300/configure +++ b/libgloss/mn10300/configure @@ -1770,10 +1770,6 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu -if test "${enable_shared}" = "yes" ; then - echo "Shared libraries not supported for cross compiling, ignored" -fi - ac_aux_dir= for ac_dir in ../.. "$srcdir"/../..; do if test -f "$ac_dir/install-sh"; then diff --git a/libgloss/mn10300/configure.ac b/libgloss/mn10300/configure.ac index 1de265d08..9526576b0 100644 --- a/libgloss/mn10300/configure.ac +++ b/libgloss/mn10300/configure.ac @@ -14,10 +14,6 @@ # AC_INIT(crt0.S) -if test "${enable_shared}" = "yes" ; then - echo "Shared libraries not supported for cross compiling, ignored" -fi - AC_CONFIG_AUX_DIR(../..) AC_CANONICAL_SYSTEM diff --git a/libgloss/moxie/configure b/libgloss/moxie/configure index a5ac8bb7a..db77f070a 100755 --- a/libgloss/moxie/configure +++ b/libgloss/moxie/configure @@ -1767,10 +1767,6 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu -if test "${enable_shared}" = "yes" ; then - echo "Shared libraries not supported for cross compiling, ignored" -fi - ac_aux_dir= for ac_dir in ../.. "$srcdir"/../..; do if test -f "$ac_dir/install-sh"; then diff --git a/libgloss/moxie/configure.ac b/libgloss/moxie/configure.ac index 284101b5d..baf66ef49 100644 --- a/libgloss/moxie/configure.ac +++ b/libgloss/moxie/configure.ac @@ -1,10 +1,6 @@ dnl Process this file with autoconf to produce a configure script. AC_INIT(crt0.S) -if test "${enable_shared}" = "yes" ; then - echo "Shared libraries not supported for cross compiling, ignored" -fi - AC_CONFIG_AUX_DIR(../..) AC_CANONICAL_SYSTEM diff --git a/libgloss/msp430/configure b/libgloss/msp430/configure index 8112a4c62..ec63830ab 100755 --- a/libgloss/msp430/configure +++ b/libgloss/msp430/configure @@ -1765,10 +1765,6 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu -if test "${enable_shared}" = "yes" ; then - echo "Shared libraries not supported for cross compiling, ignored" -fi - ac_aux_dir= for ac_dir in ../.. "$srcdir"/../..; do if test -f "$ac_dir/install-sh"; then diff --git a/libgloss/msp430/configure.ac b/libgloss/msp430/configure.ac index c9c1dfa82..aee211a34 100644 --- a/libgloss/msp430/configure.ac +++ b/libgloss/msp430/configure.ac @@ -13,10 +13,6 @@ dnl Process this file with autoconf to produce a configure script. AC_INIT(crt0.S) -if test "${enable_shared}" = "yes" ; then - echo "Shared libraries not supported for cross compiling, ignored" -fi - AC_CONFIG_AUX_DIR(../..) AC_CANONICAL_SYSTEM diff --git a/libgloss/mt/configure b/libgloss/mt/configure index 8112a4c62..ec63830ab 100755 --- a/libgloss/mt/configure +++ b/libgloss/mt/configure @@ -1765,10 +1765,6 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu -if test "${enable_shared}" = "yes" ; then - echo "Shared libraries not supported for cross compiling, ignored" -fi - ac_aux_dir= for ac_dir in ../.. "$srcdir"/../..; do if test -f "$ac_dir/install-sh"; then diff --git a/libgloss/mt/configure.ac b/libgloss/mt/configure.ac index b5ebe95db..d00cb8d4e 100644 --- a/libgloss/mt/configure.ac +++ b/libgloss/mt/configure.ac @@ -1,10 +1,6 @@ dnl Process this file with autoconf to produce a configure script. AC_INIT(crt0.S) -if test "${enable_shared}" = "yes" ; then - echo "Shared libraries not supported for cross compiling, ignored" -fi - AC_CONFIG_AUX_DIR(../..) AC_CANONICAL_SYSTEM diff --git a/libgloss/nios2/configure b/libgloss/nios2/configure index 1a8b4ed79..0391f0604 100755 --- a/libgloss/nios2/configure +++ b/libgloss/nios2/configure @@ -1767,10 +1767,6 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu -if test "${enable_shared}" = "yes" ; then - echo "Shared libraries not supported for cross compiling, ignored" -fi - ac_aux_dir= for ac_dir in ../.. "$srcdir"/../..; do if test -f "$ac_dir/install-sh"; then diff --git a/libgloss/nios2/configure.ac b/libgloss/nios2/configure.ac index 5eb0b8e3a..cddfefbcc 100644 --- a/libgloss/nios2/configure.ac +++ b/libgloss/nios2/configure.ac @@ -1,10 +1,6 @@ dnl Process this file with autoconf to produce a configure script. AC_INIT(crt0.S) -if test "${enable_shared}" = "yes" ; then - echo "Shared libraries not supported for cross compiling, ignored" -fi - AC_CONFIG_AUX_DIR(../..) AC_CANONICAL_SYSTEM diff --git a/libgloss/or1k/configure b/libgloss/or1k/configure index cf43a08d3..9a3a3f2bb 100755 --- a/libgloss/or1k/configure +++ b/libgloss/or1k/configure @@ -1768,11 +1768,6 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu -# No shared libraries allowed -if test "${enable_shared}" = "yes" ; then - echo "Shared libraries not supported for cross compiling, ignored" -fi - # Where are the auxillary tools (confg.sub etc)? ac_aux_dir= for ac_dir in ../.. "$srcdir"/../..; do diff --git a/libgloss/or1k/configure.ac b/libgloss/or1k/configure.ac index d4c22f109..839ecf535 100644 --- a/libgloss/or1k/configure.ac +++ b/libgloss/or1k/configure.ac @@ -16,11 +16,6 @@ AC_INIT(libor1k,0.0.1) -# No shared libraries allowed -if test "${enable_shared}" = "yes" ; then - echo "Shared libraries not supported for cross compiling, ignored" -fi - # Where are the auxillary tools (confg.sub etc)? AC_CONFIG_AUX_DIR(../..) diff --git a/libgloss/pa/configure b/libgloss/pa/configure index 1a8b4ed79..0391f0604 100755 --- a/libgloss/pa/configure +++ b/libgloss/pa/configure @@ -1767,10 +1767,6 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu -if test "${enable_shared}" = "yes" ; then - echo "Shared libraries not supported for cross compiling, ignored" -fi - ac_aux_dir= for ac_dir in ../.. "$srcdir"/../..; do if test -f "$ac_dir/install-sh"; then diff --git a/libgloss/pa/configure.ac b/libgloss/pa/configure.ac index 5a14e4a93..a2670fba8 100644 --- a/libgloss/pa/configure.ac +++ b/libgloss/pa/configure.ac @@ -14,10 +14,6 @@ */ AC_INIT(crt0.S) -if test "${enable_shared}" = "yes" ; then - echo "Shared libraries not supported for cross compiling, ignored" -fi - AC_CONFIG_AUX_DIR(../..) AC_CANONICAL_SYSTEM diff --git a/libgloss/pru/configure b/libgloss/pru/configure index 3b431624a..00a23ad06 100755 --- a/libgloss/pru/configure +++ b/libgloss/pru/configure @@ -1765,10 +1765,6 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu -if test "${enable_shared}" = "yes" ; then - echo "Shared libraries not supported for cross compiling, ignored" -fi - ac_aux_dir= for ac_dir in ../.. "$srcdir"/../..; do if test -f "$ac_dir/install-sh"; then diff --git a/libgloss/pru/configure.ac b/libgloss/pru/configure.ac index 205e185b3..f7a3648ed 100644 --- a/libgloss/pru/configure.ac +++ b/libgloss/pru/configure.ac @@ -13,10 +13,6 @@ dnl Process this file with autoconf to produce a configure script. AC_INIT(crt0.S) -if test "${enable_shared}" = "yes" ; then - echo "Shared libraries not supported for cross compiling, ignored" -fi - AC_CONFIG_AUX_DIR(../..) AC_CANONICAL_SYSTEM diff --git a/libgloss/rl78/configure b/libgloss/rl78/configure index 8112a4c62..ec63830ab 100755 --- a/libgloss/rl78/configure +++ b/libgloss/rl78/configure @@ -1765,10 +1765,6 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu -if test "${enable_shared}" = "yes" ; then - echo "Shared libraries not supported for cross compiling, ignored" -fi - ac_aux_dir= for ac_dir in ../.. "$srcdir"/../..; do if test -f "$ac_dir/install-sh"; then diff --git a/libgloss/rl78/configure.ac b/libgloss/rl78/configure.ac index b5ebe95db..d00cb8d4e 100644 --- a/libgloss/rl78/configure.ac +++ b/libgloss/rl78/configure.ac @@ -1,10 +1,6 @@ dnl Process this file with autoconf to produce a configure script. AC_INIT(crt0.S) -if test "${enable_shared}" = "yes" ; then - echo "Shared libraries not supported for cross compiling, ignored" -fi - AC_CONFIG_AUX_DIR(../..) AC_CANONICAL_SYSTEM diff --git a/libgloss/rs6000/configure b/libgloss/rs6000/configure index c83fe7419..c9293e966 100755 --- a/libgloss/rs6000/configure +++ b/libgloss/rs6000/configure @@ -1765,10 +1765,6 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu -if test "${enable_shared}" = "yes" ; then - echo "Shared libraries not supported for cross compiling, ignored" -fi - ac_aux_dir= for ac_dir in ../.. "$srcdir"/../..; do if test -f "$ac_dir/install-sh"; then diff --git a/libgloss/rs6000/configure.ac b/libgloss/rs6000/configure.ac index 88594f028..0919404d5 100644 --- a/libgloss/rs6000/configure.ac +++ b/libgloss/rs6000/configure.ac @@ -1,10 +1,6 @@ dnl Process this file with autoconf to produce a configure script. AC_INIT(sim-crt0.S) -if test "${enable_shared}" = "yes" ; then - echo "Shared libraries not supported for cross compiling, ignored" -fi - AC_CONFIG_AUX_DIR(../..) AC_CANONICAL_SYSTEM diff --git a/libgloss/rx/configure b/libgloss/rx/configure index 8112a4c62..ec63830ab 100755 --- a/libgloss/rx/configure +++ b/libgloss/rx/configure @@ -1765,10 +1765,6 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu -if test "${enable_shared}" = "yes" ; then - echo "Shared libraries not supported for cross compiling, ignored" -fi - ac_aux_dir= for ac_dir in ../.. "$srcdir"/../..; do if test -f "$ac_dir/install-sh"; then diff --git a/libgloss/rx/configure.ac b/libgloss/rx/configure.ac index b5ebe95db..d00cb8d4e 100644 --- a/libgloss/rx/configure.ac +++ b/libgloss/rx/configure.ac @@ -1,10 +1,6 @@ dnl Process this file with autoconf to produce a configure script. AC_INIT(crt0.S) -if test "${enable_shared}" = "yes" ; then - echo "Shared libraries not supported for cross compiling, ignored" -fi - AC_CONFIG_AUX_DIR(../..) AC_CANONICAL_SYSTEM diff --git a/libgloss/sparc/configure b/libgloss/sparc/configure index 231add6f9..d4da11635 100755 --- a/libgloss/sparc/configure +++ b/libgloss/sparc/configure @@ -1766,10 +1766,6 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu -if test "${enable_shared}" = "yes" ; then - echo "Shared libraries not supported for cross compiling, ignored" -fi - ac_aux_dir= for ac_dir in ../.. "$srcdir"/../..; do if test -f "$ac_dir/install-sh"; then diff --git a/libgloss/sparc/configure.ac b/libgloss/sparc/configure.ac index 849ef0ca4..9a9b987da 100644 --- a/libgloss/sparc/configure.ac +++ b/libgloss/sparc/configure.ac @@ -12,10 +12,6 @@ dnl Process this file with autoconf to produce a configure script. AC_INIT(sparc-stub.c) -if test "${enable_shared}" = "yes" ; then - echo "Shared libraries not supported for cross compiling, ignored" -fi - AC_CONFIG_AUX_DIR(../..) AC_PROG_INSTALL diff --git a/libgloss/sparc_leon/configure b/libgloss/sparc_leon/configure index 1a8b4ed79..0391f0604 100755 --- a/libgloss/sparc_leon/configure +++ b/libgloss/sparc_leon/configure @@ -1767,10 +1767,6 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu -if test "${enable_shared}" = "yes" ; then - echo "Shared libraries not supported for cross compiling, ignored" -fi - ac_aux_dir= for ac_dir in ../.. "$srcdir"/../..; do if test -f "$ac_dir/install-sh"; then diff --git a/libgloss/sparc_leon/configure.ac b/libgloss/sparc_leon/configure.ac index 5eb0b8e3a..cddfefbcc 100644 --- a/libgloss/sparc_leon/configure.ac +++ b/libgloss/sparc_leon/configure.ac @@ -1,10 +1,6 @@ dnl Process this file with autoconf to produce a configure script. AC_INIT(crt0.S) -if test "${enable_shared}" = "yes" ; then - echo "Shared libraries not supported for cross compiling, ignored" -fi - AC_CONFIG_AUX_DIR(../..) AC_CANONICAL_SYSTEM diff --git a/libgloss/tic6x/configure b/libgloss/tic6x/configure index 3b431624a..00a23ad06 100755 --- a/libgloss/tic6x/configure +++ b/libgloss/tic6x/configure @@ -1765,10 +1765,6 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu -if test "${enable_shared}" = "yes" ; then - echo "Shared libraries not supported for cross compiling, ignored" -fi - ac_aux_dir= for ac_dir in ../.. "$srcdir"/../..; do if test -f "$ac_dir/install-sh"; then diff --git a/libgloss/tic6x/configure.ac b/libgloss/tic6x/configure.ac index 5ea95f492..875578026 100644 --- a/libgloss/tic6x/configure.ac +++ b/libgloss/tic6x/configure.ac @@ -1,10 +1,6 @@ dnl Process this file with autoconf to produce a configure script. AC_INIT(crt0.S) -if test "${enable_shared}" = "yes" ; then - echo "Shared libraries not supported for cross compiling, ignored" -fi - AC_CONFIG_AUX_DIR(../..) AC_CANONICAL_SYSTEM diff --git a/libgloss/v850/configure b/libgloss/v850/configure index 8112a4c62..ec63830ab 100755 --- a/libgloss/v850/configure +++ b/libgloss/v850/configure @@ -1765,10 +1765,6 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu -if test "${enable_shared}" = "yes" ; then - echo "Shared libraries not supported for cross compiling, ignored" -fi - ac_aux_dir= for ac_dir in ../.. "$srcdir"/../..; do if test -f "$ac_dir/install-sh"; then diff --git a/libgloss/v850/configure.ac b/libgloss/v850/configure.ac index b5ebe95db..d00cb8d4e 100644 --- a/libgloss/v850/configure.ac +++ b/libgloss/v850/configure.ac @@ -1,10 +1,6 @@ dnl Process this file with autoconf to produce a configure script. AC_INIT(crt0.S) -if test "${enable_shared}" = "yes" ; then - echo "Shared libraries not supported for cross compiling, ignored" -fi - AC_CONFIG_AUX_DIR(../..) AC_CANONICAL_SYSTEM diff --git a/libgloss/visium/configure b/libgloss/visium/configure index c9475f87d..e79227ad5 100755 --- a/libgloss/visium/configure +++ b/libgloss/visium/configure @@ -1768,10 +1768,6 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu -if test "${enable_shared}" = "yes" ; then - echo "Shared libraries not supported for cross compiling, ignored" -fi - ac_aux_dir= for ac_dir in ../.. "$srcdir"/../..; do if test -f "$ac_dir/install-sh"; then diff --git a/libgloss/visium/configure.ac b/libgloss/visium/configure.ac index 80f9d4f99..af3969e09 100644 --- a/libgloss/visium/configure.ac +++ b/libgloss/visium/configure.ac @@ -1,10 +1,6 @@ # Process this file with autoconf to produce a configure script. AC_INIT(syscalls.c) -if test "${enable_shared}" = "yes" ; then - echo "Shared libraries not supported for cross compiling, ignored" -fi - AC_CONFIG_AUX_DIR(../..) AC_CANONICAL_SYSTEM diff --git a/libgloss/xc16x/configure b/libgloss/xc16x/configure index 3bcd8da47..fc07ea46a 100755 --- a/libgloss/xc16x/configure +++ b/libgloss/xc16x/configure @@ -1770,10 +1770,6 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu -if test "${enable_shared}" = "yes" ; then - echo "Shared libraries not supported for cross compiling, ignored" -fi - ac_aux_dir= for ac_dir in ../.. "$srcdir"/../..; do if test -f "$ac_dir/install-sh"; then diff --git a/libgloss/xc16x/configure.ac b/libgloss/xc16x/configure.ac index 107747921..177b7b828 100644 --- a/libgloss/xc16x/configure.ac +++ b/libgloss/xc16x/configure.ac @@ -15,10 +15,6 @@ # AC_INIT(crt0.S) -if test "${enable_shared}" = "yes" ; then - echo "Shared libraries not supported for cross compiling, ignored" -fi - AC_CONFIG_AUX_DIR(../..) AC_CANONICAL_SYSTEM