* ar.c: Use bfd_fatal and bfd_nonfatal instead of bfd_perror and exit.
[deliverable/binutils-gdb.git] / configure.in
index 96dd2cdf3a3ce8d0351260f690f3d68740fea642..93701e8b0ef6ba9f8243f4eb0f015bc3f8948fef 100644 (file)
@@ -107,6 +107,8 @@ case "${host}" in
   *-sun-*)               host_makefile_frag=config/mh-sun ;;
   *-hp-hpux*)             host_makefile_frag=config/mh-hpux ;;
   *-*-hiux*)              host_makefile_frag=config/mh-hpux ;;
+  rs6000-*-lynxos*)      host_makefile_frag=config/mh-lynxosrs6k
+                               cross_only="xiberty" ;;
   *-*-lynxos*)           host_makefile_frag=config/mh-lynxos
                                cross_only="xiberty" ;;
   *-*-sysv4*)             host_makefile_frag=config/mh-sysv4 ;;
@@ -164,6 +166,9 @@ case "${host}" in
   i[34]86-*-netbsd*)
     noconfigdirs="tk fileutils"
     ;;
+  i[34]86-*-vsta)
+    noconfigdirs="tcl expect dejagnu make texinfo bison patch flex byacc send-pr gprof uudecode dejagnu diff"
+    ;;
   i[34]86-*-go32)
     noconfigdirs="tcl expect deja-gnu make texinfo bison patch flex byacc send-pr gprof uudecode dejagnu diff"
     ;;
@@ -171,7 +176,7 @@ esac
 
 case "${target}" in
   alpha-dec-osf1*)
-    noconfigdirs="$noconfigdirs emacs fileutils grep libg++ libio newlib"
+    noconfigdirs="$noconfigdirs emacs fileutils grep gas libg++ libio newlib"
     ;; 
   alpha*-*-*)
     noconfigdirs="$noconfigdirs gas libg++ libio newlib"
@@ -237,6 +242,8 @@ case "${target}" in
     ;;
   sh-*-*)
     case "${host}" in
+      i[34]86-*-vsta) ;; # don't add gprof back in
+      *) configdirs=`echo gprof ${configdirs}` ;;
       i[34]86-*-go32) ;; # don't add gprof back in
       *) configdirs=`echo gprof ${configdirs}` ;;
     esac
@@ -274,7 +281,7 @@ done
 # FSF releases, it's important to let people know when their machine isn't
 # supported by the one or two programs in a package.
 
-if [ x"${notsupp}" != x ]; then
+if [ -n "${notsupp}" ] && [ -z "${norecursion}" ]; then
   echo "*** This configuration is not supported in the following subdirectories:" 1>&2
   echo "    ${notsupp}" 1>&2
   echo "    (Any other directories should still work fine.)" 1>&2
@@ -294,14 +301,14 @@ fi
 # --without-gnu-ld options for the configure script.
 
 if [ x${use_gnu_as} = x ] ; then
-  if [ x${with_gnu_as} != xno ] && echo ${configdirs} | grep "${gasdir} " > /dev/null 2>&1 && [ -d ${srcdir}/${gasdir} ] ; then
+  if [ x${with_gnu_as} != xno ] && echo " ${configdirs} " | grep " ${gasdir} " > /dev/null 2>&1 && [ -d ${srcdir}/${gasdir} ] ; then
     with_gnu_as=yes
     withoptions="$withoptions --with-gnu-as"
   fi
 fi
 
 if [ x${use_gnu_ld} = x ] ; then
-  if [ x${with_gnu_ld} != xno ] && echo ${configdirs} | grep ld > /dev/null 2>&1 && [ -d ${srcdir}/ld ] ; then
+  if [ x${with_gnu_ld} != xno ] && echo " ${configdirs} " | grep " ld " > /dev/null 2>&1 && [ -d ${srcdir}/ld ] ; then
     with_gnu_ld=yes
     withoptions="$withoptions --with-gnu-ld"
   fi
This page took 0.025006 seconds and 4 git commands to generate.