diff options
author | frueauf <frueauf> | 1998-01-27 12:31:14 +0000 |
---|---|---|
committer | frueauf <frueauf> | 1998-01-27 12:31:14 +0000 |
commit | 4558f223780912d9e451249e5d04fa8e46729b18 (patch) | |
tree | e2ecabb06788d7a5df7d16d03bedc41a27c39ee6 /editors | |
parent | 16fdcf4cd06211adbedcb01e8e3e4500e02e9932 (diff) | |
download | pkgsrc-4558f223780912d9e451249e5d04fa8e46729b18.tar.gz |
This patches the configure script, to handle NetBSD/m68k as m68k machine.
The original did map that to hp9000s300.
Diffstat (limited to 'editors')
-rw-r--r-- | editors/xemacs20/patches/patch-aa | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/editors/xemacs20/patches/patch-aa b/editors/xemacs20/patches/patch-aa new file mode 100644 index 00000000000..4e6c2474f16 --- /dev/null +++ b/editors/xemacs20/patches/patch-aa @@ -0,0 +1,23 @@ +--- ./configure-orig Thu Nov 20 03:13:44 1997 ++++ ./configure Thu Jan 22 13:46:50 1998 +@@ -902,7 +902,7 @@ + case "$canonical" in + i[3-9]86-*-netbsd*) machine=intel386 ;; + hp300-*-netbsd* | amiga-*-netbsd* | sun3-*-netbsd* | mac68k-*-netbsd* | da30-*-netbsd* | m68k-*-netbsd* ) +- machine=hp9000s300 ;; ++ machine=m68k ;; + pc532-*-netbsd* | ns32k-*-netbsd* ) machine=ns32000 ;; + pmax-*-netbsd* | mips-*-netbsd* ) machine=pmax ;; + esac +--- ./configure.in-orig Thu Nov 20 03:13:33 1997 ++++ ./configure.in Thu Jan 22 13:58:06 1998 +@@ -1013,8 +1013,7 @@ + case "$canonical" in + i[[3-9]]86-*-netbsd*) machine=intel386 ;; + hp300-*-netbsd* | amiga-*-netbsd* | sun3-*-netbsd* | mac68k-*-netbsd* | da30-*-netbsd* | m68k-*-netbsd* ) +- dnl Yes, this is somewhat bogus. +- machine=hp9000s300 ;; ++ machine=m68k ;; + pc532-*-netbsd* | ns32k-*-netbsd* ) machine=ns32000 ;; + pmax-*-netbsd* | mips-*-netbsd* ) machine=pmax ;; + esac |