From patchwork Thu Jun 26 17:14:28 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Joseph Myers X-Patchwork-Id: 1768 Received: (qmail 4197 invoked by alias); 26 Jun 2014 17:14:37 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Delivered-To: mailing list libc-alpha@sourceware.org Received: (qmail 4181 invoked by uid 89); 26 Jun 2014 17:14:35 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.4 required=5.0 tests=AWL, BAYES_00, TVD_SUBJ_WIPE_DEBT autolearn=no version=3.3.2 X-HELO: relay1.mentorg.com Date: Thu, 26 Jun 2014 17:14:28 +0000 From: "Joseph S. Myers" To: , Adhemerval Zanella Subject: Remove powerpc special cases in configure.ac Message-ID: MIME-Version: 1.0 This patch removes two powerpc special cases in the main configure.ac. The test for rs6000 is irrelevant to currently supported configurations (config.guess reports rs6000 for some OSes, of which the only one currently supported by GCC is AIX, but not for Linux). There's no need either for a special case for powerpc*-*soft; --without-fp suffices, and GCC doesn't have any special handling of such a triplet. Not tested. 2014-06-26 Joseph Myers * configure.ac: Do not test for machine being rs6000. Do not test for powerpc*-*soft. * configure: Regenerated. diff --git a/configure b/configure index ac5a67c..9929ebb 100755 --- a/configure +++ b/configure @@ -3761,19 +3761,6 @@ vendor=$config_vendor os=$config_os base_os='' -# config.guess on some IBM machines says `rs6000' instead of `powerpc'. -# Unify this here. -if test "$machine" = rs6000; then - machine="powerpc" -fi - -# Braindead PowerPC box with absolutely no FPU. -case "$machine-$host_os" in - powerpc*-*soft) - with_fp=no - ;; -esac - submachine= # Check whether --with-cpu was given. diff --git a/configure.ac b/configure.ac index bd3e829..63e1f58 100644 --- a/configure.ac +++ b/configure.ac @@ -398,19 +398,6 @@ vendor=$config_vendor os=$config_os base_os='' -# config.guess on some IBM machines says `rs6000' instead of `powerpc'. -# Unify this here. -if test "$machine" = rs6000; then - machine="powerpc" -fi - -# Braindead PowerPC box with absolutely no FPU. -case "$machine-$host_os" in - powerpc*-*soft) - with_fp=no - ;; -esac - submachine= AC_ARG_WITH([cpu], AS_HELP_STRING([--with-cpu=CPU], [select code for CPU variant]),