aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1995-04-18 03:17:12 +0000
committerRichard M. Stallman1995-04-18 03:17:12 +0000
commit018427eebd67e96a7ab5b19e2f169f97c5c30836 (patch)
tree215186010183b1910f36e665c54db85cfd50b55b
parentadde48587ad06ed296b5d71431fd5d361027d46e (diff)
downloademacs-018427eebd67e96a7ab5b19e2f169f97c5c30836.tar.gz
emacs-018427eebd67e96a7ab5b19e2f169f97c5c30836.zip
(m68k-motorola-sysv*): Determine which -m option to use with `gnucc'.
-rw-r--r--configure.in6
1 files changed, 5 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index 06c8ebeb7f2..255c2cb6062 100644
--- a/configure.in
+++ b/configure.in
@@ -274,7 +274,11 @@ case "${canonical}" in
274 m68k-motorola-sysv* | m68000-motorola-sysv* ) 274 m68k-motorola-sysv* | m68000-motorola-sysv* )
275 machine=delta opsys=usg5-3 275 machine=delta opsys=usg5-3
276 if test -z "`type gnucc | grep 'not found'`" 276 if test -z "`type gnucc | grep 'not found'`"
277 then CC=gnucc 277 then
278 if test -s /etc/167config
279 then CC="gnucc -m68040"
280 else CC="gnucc -m68881"
281 fi
278 else 282 else
279 if test -z "`type gcc | grep 'not found'`" 283 if test -z "`type gcc | grep 'not found'`"
280 then CC=gcc 284 then CC=gcc