From 08a561521f2dd3f82ecd380c5963c5d96fb53e37 Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Mon, 16 Jun 1997 23:10:46 +0000 Subject: [PATCH] * configure.in: Use mh-ppcpic and mt-ppcpic for powerpc*-* targets. --- ChangeLog | 2 ++ configure.in | 4 +++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index c74d3598bb..11afc80edb 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ Mon Jun 16 11:11:10 1997 Ian Lance Taylor + * configure.in: Use mh-ppcpic and mt-ppcpic for powerpc*-* targets. + * configure: Set CFLAGS and CXXFLAGS, and substitute them into Makefile. From Jeff Makey . * Makefile.in: Add comment for CFLAGS and CXXFLAGS. diff --git a/configure.in b/configure.in index 81c9622f75..372c1e5e3c 100644 --- a/configure.in +++ b/configure.in @@ -196,6 +196,7 @@ if [ x${shared} = xyes ]; then hppa*) waugh=config/mh-papic ;; i[3456]86-*) waugh=config/mh-x86pic ;; sparc64-*) waugh=config/mh-sparcpic ;; + powerpc*-*) waugh=config/mh-ppcpic ;; *) waugh=config/mh-${host_cpu}pic ;; esac if [ -f ${srcdir}/${waugh} ]; then @@ -790,7 +791,8 @@ fi if [ x${shared} = xyes ]; then case "${target}" in hppa*) target_makefile_frag=config/mt-papic ;; - i[3456]86-*) target_makefile_frag=config/mt-x86pic ;; + i[3456]86-*) target_makefile_frag=config/mt-x86pic ;; + powerpc*-*) target_makefile_frag=config/mt-ppcpic ;; *) target_makefile_frag=config/mt-${target_cpu}pic ;; esac fi -- 2.34.1