configure.in: Finalize support for {alpha|powerpc}*-*-linux-gnulibc1
authorFranz Sirl <Franz.Sirl-kernel@lauterbach.com>
Sat, 3 Jan 1998 11:16:38 +0000 (04:16 -0700)
committerJeff Law <law@gcc.gnu.org>
Sat, 3 Jan 1998 11:16:38 +0000 (04:16 -0700)
/
        * configure.in: Finalize support for {alpha|powerpc}*-*-linux-gnulibc1

From-SVN: r17287

configure.in
libstdc++/configure.in

index 6de0e2cdc9f47ab5dbdf194b74a9ca404e8c550d..18469971a18d396376d80307a947c4ab651b4e95 100644 (file)
@@ -14,7 +14,7 @@
 ## For more information on these two systems, check out the documentation
 ## for 'Autoconf' (autoconf.texi) and 'Configure' (configure.texi).  
 
-#   Copyright (C) 1992, 93, 94, 95, 96, 1997 Free Software Foundation, Inc.
+#   Copyright (C) 1992, 93, 94, 95, 96, 97, 1998 Free Software Foundation, Inc.
 #
 # This file is free software; you can redistribute it and/or modify it
 # under the terms of the GNU General Public License as published by
@@ -301,6 +301,12 @@ case "${target}" in
   powerpc-*-netware*)
     target_makefile_frag="${target_makefile_frag} config/mt-netware"
     ;;
+  alpha*-*-linux-gnulibc1)
+    target_makefile_frag="${target_makefile_frag} config/mt-linux"
+    ;;
+  powerpc*-*-linux-gnulibc1)
+    target_makefile_frag="${target_makefile_frag} config/mt-linux"
+    ;;
   *-*-linux-gnu)
     target_makefile_frag="${target_makefile_frag} config/mt-linux"
     ;;
index 9ec0ac10482d97e15546cf85ba7c035d2a3b5fdd..efc2f55cd13f0d3bb72ae8fc19d7d93cc07e8b4d 100644 (file)
@@ -43,8 +43,10 @@ fi
 
 # Make sure the right flags are defined for multi-threading.
 case "${target}" in
-  *-*-linux-gnu)       frags="${frags} linux.mt" ;;
-  m68k-motorola-sysv)  frags="${frags} delta.mt" ;;
+  alpha*-*-linux-gnulibc1)     frags="${frags} linux.mt" ;;
+  powerpc*-*-linux-gnulibc1)   frags="${frags} linux.mt" ;;
+  *-*-linux-gnu)               frags="${frags} linux.mt" ;;
+  m68k-motorola-sysv)          frags="${frags} delta.mt" ;;
 esac
 
 for frag in ${frags}; do