This is the mail archive of the libc-hacker@sources.redhat.com mailing list for the glibc project.

Note that libc-hacker is a closed list. You may look at the archives of this list, but subscription and posting are not open.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Fix configure check for AS/LD.


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  <aj at suse dot de>

	* 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 at suse dot de
   private aj at arthur dot inka dot de
    http://www.suse.de/~aj


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]