From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 12491 invoked by alias); 31 Dec 2001 06:10:33 -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 12449 invoked from network); 31 Dec 2001 06:10:29 -0000 Received: from unknown (HELO crocodile-dances.eterna.com.au) (203.15.111.99) by sources.redhat.com with SMTP; 31 Dec 2001 06:10:29 -0000 Received: by crocodile-dances.eterna.com.au (Postfix, from userid 127) id 126DA17EEB; Mon, 31 Dec 2001 17:10:12 +1100 (EST) Received: from cygnus.com (localhost [127.0.0.1]) by crocodile-dances.eterna.com.au (Postfix) with ESMTP id AB10D5B83D for ; Mon, 31 Dec 2001 17:10:12 +1100 (EST) To: gdb-patches@sources.redhat.com organisation: Red Hat, Asia-Pacific. subject: [patch] allow darwin as cross compile host Date: Sun, 30 Dec 2001 22:10:00 -0000 Message-ID: <2904.1009779006@cygnus.com> From: matthew green X-SW-Source: 2001-12/txt/msg00614.txt.bz2 hi folks. i needed this patch to correctly guess to use "macos", as configure.guess is giving me `powerpc-apple-darwin5.2'. OK to commit? .mrg. * configure.host (powerpc-*-darwin*): Set gdb_host=macos. Index: configure.host =================================================================== RCS file: /cvs/src/src/gdb/configure.host,v retrieving revision 1.31 diff -p -r1.31 configure.host *** configure.host 2001/12/17 16:23:02 1.31 --- configure.host 2001/12/31 06:05:49 *************** ns32k-*-netbsd*) gdb_host=nbsd ;; *** 127,132 **** --- 127,133 ---- powerpc-*-aix*) gdb_host=aix ;; powerpc-*-linux*) gdb_host=linux ;; powerpc-*-netbsd*) gdb_host=nbsd ;; + powerpc-*-darwin*) gdb_host=macos ;; rs6000-*-lynxos*) gdb_host=rs6000lynx ;; rs6000-*-aix4*) gdb_host=aix4 ;;