diff options
author | Stan Shebs <shebs@codesourcery.com> | 1995-11-13 20:47:41 +0000 |
---|---|---|
committer | Stan Shebs <shebs@codesourcery.com> | 1995-11-13 20:47:41 +0000 |
commit | 19b1d034dc7bf98641cbea4934ec3f451d1db1f2 (patch) | |
tree | 6c9851ac67179a255e7818466ccb62991d2b18a9 /configure.in | |
parent | afa67334cb5f8f74dbc9a7295284ee38972f1e4f (diff) | |
download | gdb-19b1d034dc7bf98641cbea4934ec3f451d1db1f2.zip gdb-19b1d034dc7bf98641cbea4934ec3f451d1db1f2.tar.gz gdb-19b1d034dc7bf98641cbea4934ec3f451d1db1f2.tar.bz2 |
* config.sub: Accept pmac and pmac-mpw as names for PowerMacs,
accept mpw and mac-mpw as names for m68k Macs, change macos7 to
just macos.
* configure.in: Configure grez resource compiler if targeting Mac.
* Makefile.in (all-grez, install-grez): New targets.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/configure.in b/configure.in index b4b51c6..2a0d470 100644 --- a/configure.in +++ b/configure.in @@ -502,9 +502,14 @@ case "${target}" in noconfigdirs="$noconfigdirs target-newlib" ;; *-*-lynxos*) - # Newlib makes problems for libg++ in crosses. - noconfigdirs="$noconfigdirs target-newlib" - ;; + # Newlib makes problems for libg++ in crosses. + noconfigdirs="$noconfigdirs target-newlib" + ;; + *-*-macos* | \ + *-*-mpw*) + # Macs want a resource compiler. + configdirs="$configdirs grez" + ;; esac # If we are building a Canadian Cross, discard tools that can not be built |