From: Richard Henderson Date: Mon, 23 Nov 1998 08:47:30 +0000 (-0800) Subject: * configure.in: Append mh-ppcpic and mh-elfalphapic as appropriate. X-Git-Tag: prereleases/egcs-1.1.1-prerelease-3~11 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5826cf6728055d0de5bec04cddec17b300197e7d;p=thirdparty%2Fgcc.git * configure.in: Append mh-ppcpic and mh-elfalphapic as appropriate. From-SVN: r23774 --- diff --git a/libio/ChangeLog b/libio/ChangeLog index da65253dece0..2065e6ef9da9 100644 --- a/libio/ChangeLog +++ b/libio/ChangeLog @@ -1,3 +1,7 @@ +Mon Nov 23 09:44:26 1998 Richard Henderson + + * configure.in: Append mh-ppcpic and mh-elfalphapic as appropriate. + 1998-08-25 14:34 Ulrich Drepper * libio/iogetline.c (_IO_getline_info): Don't read anything for diff --git a/libio/configure.in b/libio/configure.in index 9d523e7898bd..5cb091daac65 100644 --- a/libio/configure.in +++ b/libio/configure.in @@ -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