From: Glenn Morris Date: Sat, 27 Jun 2009 02:42:05 +0000 (+0000) Subject: Restore netbsd on mips, mipsel, mipseb. X-Git-Tag: emacs-pretest-23.1.90~2415 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=920b116e6764f09a113eda7b083afa6b57fe7633;p=emacs.git Restore netbsd on mips, mipsel, mipseb. --- diff --git a/ChangeLog b/ChangeLog index 0573bec65df..26f5235ead3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2009-06-27 Glenn Morris + + * configure: Restore netbsd on mips, mipsel, mipseb. + 2009-06-26 Dan Nicolaescu * configure.in (--enable-checking): New option. diff --git a/configure b/configure index ffe89f8d888..c528b611df0 100755 --- a/configure +++ b/configure @@ -2519,6 +2519,9 @@ _ACEOF case "${canonical}" in alpha*-*-netbsd*) machine=alpha ;; i[3456]86-*-netbsd*) machine=intel386 ;; + mips-*-netbsd*) machine=pmax ;; + mipsel-*-netbsd*) machine=pmax ;; + mipseb-*-netbsd*) machine=pmax ;; powerpc-*-netbsd*) machine=macppc ;; sparc*-*-netbsd*) machine=sparc ;; vax-*-netbsd*) machine=vax ;; diff --git a/configure.in b/configure.in index d61162d8238..a1b02dced8b 100644 --- a/configure.in +++ b/configure.in @@ -393,6 +393,9 @@ dnl see the `changequote' comment above. case "${canonical}" in alpha*-*-netbsd*) machine=alpha ;; i[3456]86-*-netbsd*) machine=intel386 ;; + mips-*-netbsd*) machine=pmax ;; + mipsel-*-netbsd*) machine=pmax ;; + mipseb-*-netbsd*) machine=pmax ;; powerpc-*-netbsd*) machine=macppc ;; sparc*-*-netbsd*) machine=sparc ;; vax-*-netbsd*) machine=vax ;;