From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 24623 invoked by alias); 13 Nov 2002 17:13:38 -0000 Mailing-List: contact gdb-patches-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sources.redhat.com Received: (qmail 24609 invoked from network); 13 Nov 2002 17:13:37 -0000 Received: from unknown (HELO dc-mx02.cluster1.charter.net) (209.225.8.12) by sources.redhat.com with SMTP; 13 Nov 2002 17:13:37 -0000 Received: from [66.189.46.2] (HELO platinum.localnet) by dc-mx02.cluster1.charter.net (CommuniGate Pro SMTP 3.5.9) with ESMTP id 3797116; Wed, 13 Nov 2002 12:13:36 -0500 Date: Wed, 13 Nov 2002 09:13:00 -0000 Subject: [RFA] Update Darwin support in top-level configure.in Content-Type: multipart/mixed; boundary=Apple-Mail-4-918356379 Mime-Version: 1.0 (Apple Message framework v543) Cc: gdb-patches@sources.redhat.com To: binutils@sources.redhat.com From: Klee Dienes Message-Id: <3DEB26DF-F72B-11D6-B5E7-00039396EEB8@apple.com> X-SW-Source: 2002-11/txt/msg00367.txt.bz2 --Apple-Mail-4-918356379 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII; format=flowed Content-length: 222 2002-11-12 Klee Dienes * configure.in: Generalize the Darwin config to *-*-darwin* (not just PowerPC). Remove bfd, binutils, opcodes, gdb, and gprof from noconfigdirs. --Apple-Mail-4-918356379 Content-Disposition: attachment; filename=top-configure.txt Content-Transfer-Encoding: 7bit Content-Type: text/plain; x-unix-mode=0644; name="top-configure.txt" Content-length: 1061 --- /Volumes/Storage/Users/kdienes/source/cygnus.cygnus/src/configure.in Wed Nov 13 02:30:07 2002 +++ configure.in Wed Nov 13 12:03:31 2002 @@ -524,9 +524,6 @@ powerpc-*-beos*) noconfigdirs="$noconfigdirs gdb target-newlib target-libgloss ${libgcj}" ;; - powerpc-*-darwin*) - noconfigdirs="$noconfigdirs bfd binutils ld gas opcodes gdb tk itcl tix libgui gprof ${libgcj}" - ;; powerpc-*-eabi) noconfigdirs="$noconfigdirs ${libgcj}" ;; @@ -629,6 +626,9 @@ ip2k-*-*) noconfigdirs="$noconfigdirs target-libiberty ${libstdcxx_version} ${libgcj}" ;; + *-*-darwin*) + noconfigdirs="$noconfigdirs tk itcl tix itk libgui gas ld ${libgcj}" + ;; *-*-linux*) noconfigdirs="$noconfigdirs target-newlib target-libgloss" ;; @@ -639,6 +639,10 @@ noconfigdirs="$noconfigdirs ${libgcj}" ;; esac + +if test "${build}" != "${host}" ; then + noconfigdirs="$noconfigdirs expect" +fi # If we aren't building newlib, then don't build libgloss, since libgloss # depends upon some newlib header files. --Apple-Mail-4-918356379--