* gdb.base/list.exp: Add expect patterns for output from
[deliverable/binutils-gdb.git] / configure.in
index 5730b4029486d2c3e07ee83714f6754e58bf27bf..5ee69c3dedaf1c87f4ac977240bd15fa453341b2 100644 (file)
@@ -117,6 +117,7 @@ case "${host}" in
   *-*-solaris2*)          host_makefile_frag=config/mh-solaris ;;
   m68k-sun-*)            host_makefile_frag=config/mh-sun3 ;;
   *-sun-*)               host_makefile_frag=config/mh-sun ;;
+  *-hp-hpux[78]*)         host_makefile_frag=config/mh-hpux8 ;;
   *-hp-hpux*)             host_makefile_frag=config/mh-hpux ;;
   *-*-hiux*)              host_makefile_frag=config/mh-hpux ;;
   rs6000-*-lynxos*)      host_makefile_frag=config/mh-lynxrs6k ;;
@@ -166,14 +167,18 @@ fi
 if [ x${enable_shared} = xyes ]; then
   waugh=
   case "${host}" in
-    hppa*-*-*)         waugh=config/mh-papic ;;
-    i[345]86-*-*)      waugh=config/mh-x86pic ;;
-    *-*-*)             waugh=config/mh-${host_cpu}pic ;;
+    hppa*)             waugh=config/mh-papic ;;
+    i[345]86-*)                waugh=config/mh-x86pic ;;
+    *)                 waugh=config/mh-${host_cpu}pic ;;
   esac
-  if [ -n "${host_makefile_frag}" ] && [ -f ${srcdir}/${waugh} ]; then
-    cat ${srcdir}/${host_makefile_frag} > mh-frag
-    cat ${srcdir}/${waugh} >> mh-frag
-    host_makefile_frag=mh-frag
+  if [ -f ${srcdir}/${waugh} ]; then
+    if [ -n "${host_makefile_frag}" ] ; then
+      cat ${srcdir}/${host_makefile_frag} > mh-frag
+      cat ${srcdir}/${waugh} >> mh-frag
+      host_makefile_frag=mh-frag
+    else
+      host_makefile_frag=${waugh}
+    fi
   fi
 fi
 
@@ -344,9 +349,16 @@ case "${target}" in
     ;;
 # start-sanitize-arc
   arc-*-*)
+    # Leave g++ for later.
     noconfigdirs="$noconfigdirs libg++ libstdc++ libio librx"
     ;;
 # end-sanitize-arc
+# start-sanitize-psion
+  arm-*-pe*)
+    # Leave g++ for later.
+    noconfigdirs="$noconfigdirs libg++ libstdc++ libio librx"
+    ;;
+# end-sanitize-psion
   arm-*-*)
     noconfigdirs="$noconfigdirs ld"
     ;;
@@ -393,7 +405,7 @@ case "${target}" in
     ;;
   powerpc-*-aix*)
     # copied from rs6000-*-* entry
-    noconfigdirs="$noconfigdirs ld binutils gprof textutils cvs"
+    noconfigdirs="$noconfigdirs gas ld binutils gprof textutils cvs"
     ;;
   rs6000-*-lynxos*)
     # a gcc built textutils will cause the linker to hang on 'join'
@@ -524,9 +536,9 @@ fi
 
 if [ x${enable_shared} = xyes ]; then
   case "${target}" in
-    hppa*-*-*)         target_makefile_frag=config/mt-papic ;;
-    i[345]86-*-*)      target_makefile_frag=config/mt-x86pic ;;
-    *-*-*)             target_makefile_frag=config/mt-${target_cpu}pic ;;
+    hppa*)             target_makefile_frag=config/mt-papic ;;
+    i[345]86-*)                target_makefile_frag=config/mt-x86pic ;;
+    *)                 target_makefile_frag=config/mt-${target_cpu}pic ;;
   esac
 fi
 
This page took 0.037237 seconds and 4 git commands to generate.