diff options
author | frueauf <frueauf@pkgsrc.org> | 1998-01-27 12:31:14 +0000 |
---|---|---|
committer | frueauf <frueauf@pkgsrc.org> | 1998-01-27 12:31:14 +0000 |
commit | 9a97eb73a25f728c857fa53c149ad699e980763d (patch) | |
tree | e2ecabb06788d7a5df7d16d03bedc41a27c39ee6 /editors | |
parent | 715621a93816b8272b6331b517e17629f0b22137 (diff) | |
download | pkgsrc-9a97eb73a25f728c857fa53c149ad699e980763d.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 |