From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 15663 invoked by alias); 18 Oct 2002 00:40:39 -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 15643 invoked from network); 18 Oct 2002 00:40:37 -0000 Received: from unknown (HELO mx1.redhat.com) (66.187.233.31) by sources.redhat.com with SMTP; 18 Oct 2002 00:40:37 -0000 Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.11.6/8.11.6) with ESMTP id g9I0Jjw31546; Thu, 17 Oct 2002 20:19:45 -0400 Received: from pobox.corp.redhat.com (pobox.corp.redhat.com [172.16.52.156]) by int-mx1.corp.redhat.com (8.11.6/8.11.6) with ESMTP id g9I0ebf01509; Thu, 17 Oct 2002 20:40:37 -0400 Received: from localhost.localdomain (vpn50-24.rdu.redhat.com [172.16.50.24]) by pobox.corp.redhat.com (8.11.6/8.11.6) with ESMTP id g9I0eaT20786; Thu, 17 Oct 2002 20:40:36 -0400 Received: (from kev@localhost) by localhost.localdomain (8.11.6/8.11.6) id g9I0eU619654; Thu, 17 Oct 2002 17:40:30 -0700 Date: Thu, 17 Oct 2002 17:40:00 -0000 From: Kevin Buettner Message-Id: <1021018004030.ZM19653@localhost.localdomain> To: gdb-patches@sources.redhat.com, binutils@sources.redhat.com, gcc-patches@gcc.gnu.org Subject: [RFA] Top level configury additions for RDA MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-SW-Source: 2002-10/txt/msg00296.txt.bz2 Any objections to the following additions to the top level configury? (RDA is the Red Hat Debug Agent and library.) * Makefile.in (ALL_MODULES): Add all-rda. (CROSS_CHECK_MODULES): Add check-rda. (INSTALL_MODULES): Add install-rda. (all-rda): New target. * configure.in (configdirs): Add rda to list of directories to configure for certain hosts. Index: Makefile.in =================================================================== RCS file: /cvs/src/src/Makefile.in,v retrieving revision 1.76 diff -u -p -r1.76 Makefile.in --- Makefile.in 3 Oct 2002 19:08:53 -0000 1.76 +++ Makefile.in 18 Oct 2002 00:39:17 -0000 @@ -563,6 +563,7 @@ ALL_MODULES = \ all-perl \ all-prms \ all-rcs \ + all-rda \ all-readline \ all-release \ all-recode \ @@ -633,6 +634,7 @@ CROSS_CHECK_MODULES = \ check-perl \ check-prms \ check-rcs \ + check-rda \ check-readline \ check-recode \ check-sed \ @@ -697,6 +699,7 @@ INSTALL_MODULES = \ install-perl \ install-prms \ install-rcs \ + install-rda \ install-readline \ install-recode \ install-sed \ @@ -1703,6 +1706,7 @@ all-perl: all-prms: all-libiberty configure-target-qthreads: $(ALL_GCC_C) all-rcs: +all-rda: all-readline: all-recode: all-libiberty all-sed: all-libiberty Index: configure.in =================================================================== RCS file: /cvs/src/src/configure.in,v retrieving revision 1.113 diff -u -p -r1.113 configure.in --- configure.in 7 Oct 2002 16:40:56 -0000 1.113 +++ configure.in 18 Oct 2002 00:39:17 -0000 @@ -205,6 +205,18 @@ case "${host}" in configdirs="$configdirs libtermcap dosrel" ;; esac +# rda is known to build only for some specific hosts +case "${host}" in + *-solaris*) + configdirs="$configdirs rda" ;; + *-linux*) + configdirs="$configdirs rda" ;; + *-cygwin*) + configdirs="$configdirs rda" ;; + *-freebsd*|*-netbsd*|*-openbsd*) + configdirs="$configdirs rda" ;; +esac + # Remove more programs from consideration, based on the host or # target this usually means that a port of the program doesn't # exist yet.