Executive summary: this patch bvelongs in 21.1.15.
>>>> "JHP" == John H Palmieri
<palmieri(a)math.washington.edu> writes:
JHP> I've been running various versions of XEmacs 21.2 lately, but I
JHP> thought I would try getting the new release 21.1.14, just for kicks.
JHP> When I tried to configure it, I got this message:
JHP> ./configure: XEmacs hasn't been ported to `alphaev5-dec-osf5.0'
systems.
JHP> ./configure: Check `etc/MACHINES' for recognized configuration names.
Here's the trivial patch to fix this:
John: could you test this? (patch, autoconf, configure, make)
Vin: could you add this to 21.1.15?
http://list-archive.xemacs.org/xemacs-patches/200010/msg00025.html
./ChangeLog:
2000-10-06 Martin Buchholz <martin(a)xemacs.org>
* configure.in: Pretend that DEC OSF >= 5 is really DEC OSF 4.
Index: configure.in
===================================================================
RCS file: /usr/CVSroot/XEmacs/xemacs/configure.in,v
retrieving revision 1.111.2.125
diff -u -w -r1.111.2.125 configure.in
--- configure.in 2000/10/03 06:31:24 1.111.2.125
+++ configure.in 2000/10/06 05:57:32
@@ -1108,7 +1108,7 @@
*-dec-osf1.2 | *-dec-osf1* ) opsys=decosf1-2 ;;
*-dec-osf3.[[2-9]] ) opsys=decosf3-2 ;;
*-dec-osf3* ) opsys=decosf3-1 ;;
- *-dec-osf4* ) opsys=decosf4-0 ;;
+ *-dec-osf[[4-9]]* ) opsys=decosf4-0 ;;
dnl DEC Ultrix
*-*-ultrix[[0-3]].* | *-*-ultrix4.0* ) opsys=bsd4-2 ;;
JHP> './configure ... alpha-dec-osf1' worked, sort of (the tests in 'make
JHP> check' report 100% success, but then it hangs; otherwise, xemacs seems
JHP> to run okay). Is it worthwhile fixing configure to recognize
JHP> alphaev5-dec-osf5.0?
Yes.