From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 30639 invoked by alias); 1 Apr 2003 06:39:26 -0000 Mailing-List: contact libc-hacker-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-hacker-owner@sources.redhat.com Received: (qmail 30623 invoked from network); 1 Apr 2003 06:39:25 -0000 Received: from unknown (HELO Cantor.suse.de) (213.95.15.193) by sources.redhat.com with SMTP; 1 Apr 2003 06:39:25 -0000 Received: from Hermes.suse.de (Hermes.suse.de [213.95.15.136]) by Cantor.suse.de (Postfix) with ESMTP id 6D33614A1C for ; Tue, 1 Apr 2003 08:39:23 +0200 (MEST) Received: from aj by arthur.inka.de with local (Exim 3.34 #1) id 190FQY-0005TR-00 for libc-hacker@sources.redhat.com; Tue, 01 Apr 2003 08:39:22 +0200 To: GNU libc hacker Subject: Fix configure check for AS/LD. From: Andreas Jaeger Date: Tue, 01 Apr 2003 06:39:00 -0000 Message-ID: User-Agent: Gnus/5.090017 (Oort Gnus v0.17) XEmacs/21.4 (Artificial Intelligence, linux) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-SW-Source: 2003-04/txt/msg00000.txt.bz2 I just got a message that "t" is missing while running configure on a system with old binutils. Ok to commit the appended patch ? Andreas 2003-04-01 Andreas Jaeger * configure.in: Output binutils as name if version is too old. ============================================================ Index: configure.in --- configure.in 29 Mar 2003 08:15:27 -0000 1.389 +++ configure.in 1 Apr 2003 06:38:58 -0000 @@ -682,10 +682,10 @@ AC_SUBST(MIG)dnl Needed by sysdeps/mach/ # Accept binutils 2.13 or newer. AC_CHECK_PROG_VER(AS, $AS, --version, [GNU assembler.* \([0-9]*\.[0-9.]*\)], - [2.1[3-9]*], AS=: critic_missing=t) + [2.1[3-9]*], AS=: critic_missing=binutils) AC_CHECK_PROG_VER(LD, $LD, --version, [GNU ld.* \([0-9][0-9]*\.[0-9.]*\)], - [2.1[3-9]*], LD=: critic_missing=t) + [2.1[3-9]*], LD=: critic_missing=binutils) # We need the physical current working directory. We cannot use the # "pwd -P" shell builtin since that's not portable. Instead we try to -- Andreas Jaeger SuSE Labs aj@suse.de private aj@arthur.inka.de http://www.suse.de/~aj