]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
* configure.in: Append mh-ppcpic and mh-elfalphapic as appropriate.
authorRichard Henderson <rth@cygnus.com>
Mon, 23 Nov 1998 08:47:30 +0000 (00:47 -0800)
committerJeff Law <law@gcc.gnu.org>
Mon, 23 Nov 1998 08:47:30 +0000 (01:47 -0700)
From-SVN: r23774

libio/ChangeLog
libio/configure.in

index da65253dece07a6ccbd2b5bdbf925b4c604e7fe2..2065e6ef9da9336e655a97a34eb5b01b494be71a 100644 (file)
@@ -1,3 +1,7 @@
+Mon Nov 23 09:44:26 1998  Richard Henderson <rth@cygnus.com>
+
+        * configure.in: Append mh-ppcpic and mh-elfalphapic as appropriate.
+
 1998-08-25 14:34  Ulrich Drepper  <drepper@cygnus.com>
 
        * libio/iogetline.c (_IO_getline_info): Don't read anything for
index 9d523e7898bd010b78c701397741cddfc66230af..5cb091daac654b450cf7c2cf45149094266cdf59 100644 (file)
@@ -55,8 +55,12 @@ if [ "${shared}" = "yes" ]; then
   case "${target}" in
     hppa*-*)    frags="${frags} ../../config/mh-papic" ;;
     i[3456]86-*) frags="${frags} ../../config/mh-x86pic" ;;
-    alpha*-*-linux*)
-                frags="${frags} ../../config/mh-elfalphapic" ;;
+    alpha*-*-linux*) frags="${frags} ../../config/mh-elfalphapic" ;;
+
+    # There doesn't seem to be a simpler way to say all-ppc except AIX
+    *-*-aix*)    ;;
+    powerpc*-* | ppc*-*) frags="${frags} ../../config/mh-ppcpic" ;;
+
     *)          frags="${frags} ../../config/mh-${target_cpu}pic" ;;
   esac
 fi